@extends('admin.layouts.master') @section('title','All States') @section('maincontent') @component('components.breadcumb',['secondaryactive' => 'active']) @slot('heading') {{ __('States') }} @endslot @slot('menu1') {{ __('States') }} @endslot @slot('button')
{{ __("Add State")}}
@endslot @endcomponent
{{ __('States')}}
@foreach ($states as $state) @endforeach
# {{ __('adminstaticword.State') }} {{ __('adminstaticword.Country') }} {{ __('adminstaticword.Delete') }}
1 {{ $state->name }} @if(isset($state->country)) {{ $state->country->nicename }} @endif
@endsection