@extends('layouts.back')
@section('title', 'Wilayah Kerja')
@section('content')
Wilayah Kerja
@if (session('success'))
{{ session('success') }}
@endif
@if ($wilkerText)
{!! $wilkerText->text !!}
@endif
| Tempat |
Alamat |
Kepala |
Aksi |
@forelse($wilker as $item)
| {{ $item->tempat }} |
{{ $item->alamat }} |
{{ $item->nama_kepala }} |
|
@empty
|
Belum ada data
|
@endforelse
{{-- MODAL CREATE --}}
@endsection