@extends('layouts.settings') @section('content') @include('partials.breadcrumb', ['breadcrumbTitle' => 'State','parentTitle'=>'Settings','parentUrl'=>'/settings'])
@can('State Edit')

Add New

@include('settings.partials.success-message') @include('settings.partials.delete-message') @endcan
@foreach($states as $state) @endforeach
# Name Country
{{$state->id}} {{ $num++ }} {{$state->name}} {{optional($state->country)->name}}
{{$states->appends(['searchText' => request('searchText')])->links()}}
@stop @section('help-links') @include('help.help-links',['helpLink'=>config('help-links.help_links.state'),'helpTitle'=>config('help-links.help_titles.state')]) @endsection @section('after_scripts') @include('settings.state.state-script') @stop