@extends('layouts.app') @section('template_title') State @endsection @section('content')
{{ __('State') }}
@if ($message = Session::get('success'))

{{ $message }}

@endif
@foreach ($states as $state) @endforeach
No Country Id Name Code
{{ ++$i }} {{ $state->country_id }} {{ $state->name }} {{ $state->code }}
{{ __('Show') }} {{ __('Edit') }} @csrf @method('DELETE')
{!! $states->links() !!}
@endsection