@extends("admin/layouts.master") @section('title','All States') @section("body") @if($errors->any())
@endif
@include('admin.message')
@foreach ($states as $state) @endforeach
# {{ __('adminstaticword.State') }} {{ __('adminstaticword.Country') }} {{ __('adminstaticword.Delete') }}
1 {{ $state->name }} {{ $state->country->nicename }}
{{ csrf_field() }} {{ method_field('DELETE') }}
@endsection