@extends('admin.layouts.master') @section('title','States') @section('maincontent') @include('admin.layouts.topbar',$data)
{{ __('Add States')}}
@can('locations.state.create') {{ __("Add State")}} @endcan
@foreach ($states as $state) @endforeach
# {{ __('State') }} {{ __('Country') }} {{ __('Delete') }}
1 {{ $state->name }} @if(isset($state->country)) {{ $state->country->nicename }} @endif
@endsection