{{-- table loader --}}
{{__('admin.loading')}}
{{-- table loader --}} {{-- table content --}} @foreach($rows as $city) @endforeach
{{__('admin.date')}} {{__('admin.name')}} {{__('admin.region')}} {{__('admin.control')}}
{{\Carbon\Carbon::parse($city->created_at)->format('d/m/Y')}} {{$city->name}} {{$city->region->name}}
{{-- table content --}} {{-- no data found div --}} @if ($rows->count() == 0)
{{__('admin.there_are_no_matches_matching')}}
@endif {{-- no data found div --}}
{{-- pagination links div --}} @if ($rows->count() > 0 && $rows instanceof \Illuminate\Pagination\AbstractPaginator )
{{$rows->links()}}
@endif {{-- pagination links div --}}