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