@extends('admin.layouts.app') @section('content')

{{translate('States')}}

{{ translate('All States') }}
@foreach($states as $key => $state) @endforeach
# {{translate('Name')}} {{translate('Country')}} {{translate('Options')}}
{{ ($key+1) + ($states->currentPage() - 1)*$states->perPage() }} {{$state->name}} {{$state->country->name}} @can('edit_state') @endcan @can('delete_state') @endcan
{{ $states->appends(request()->input())->links() }}
@can('add_state')
{{translate('Add New State')}}
@csrf
@error('country') {{ $message }} @enderror
@error('name') {{ $message }} @enderror
@endcan
@endsection @section('modal') @include('modals.delete_modal') @endsection @section('script') @endsection