@include('links.header') State List
@if(Auth::user()->role_id==1) Add State @endif

@if (Session::has('msg')) @endif @if (Session::has('msg_e')) @endif
@if(!empty($states)) @foreach($states AS $index=>$state) @endforeach @endif
# Name Action
# Name Action
{{ $index+1 }} {{ $state->name }} Edit       {{-- {!! Form::open(array( 'style' => 'display: inline-block;', 'method' => 'DELETE', 'onsubmit' => "return confirm('Are you sure. You want to delete record!');", 'route' => ['states.destroy', $state->id])) !!} {!! Form::submit('Delete', array('class' => 'btn btn-danger')) !!} {!! Form::close() !!} --}}
@include('links.footer')