@extends('admin.layouts.app') @section('title') {{ __('city_list') }} @endsection @section('content')

{{ __('city_list') }} {{ $cities->total() }}

@if (userCan('city.create'))   {{ __('create') }} @endif
@if ($cities->count() > 1) @endif @if (userCan('city.update') || userCan('city.delete')) @endif @if ($cities->count() > 0) @foreach ($cities as $city) @if ($cities->count() > 1) @endif @if (userCan('city.update') || userCan('city.delete')) @endif @endforeach @else @endif
# {{ __('name') }} {{ __('state') }} {{ __('action') }}
id }} class="sub_chk" id="checkbox{{ $city->id }}">
{{ $city->id }} {{ $city->name }}
@if (userCan('city.update')) @endif @if (userCan('city.delete'))
@method('DELETE') @csrf
@endif
{{ __('no_data_found') }}
@if (request('perpage') != 'all' && $cities->total() > $cities->count())
{{ $cities->links() }}
@endif
@endsection @section('style') @endsection @section('script') @endsection