/home/techb158/ileadtechnology.com/resources/views/admin/country/state
Edit: /home/techb158/ileadtechnology.com/resources/views/admin/country/state/index.blade.php (4672B)
@extends("admin/layouts.master")
@section('title','All States')
@section("body")
@if($errors->any())
@foreach($errors->all() as $error)
- {{ $error }}
@endforeach
@endif
@include('admin.message')
| # |
{{ __('adminstaticword.State') }} |
{{ __('adminstaticword.Country') }} |
{{ __('adminstaticword.Delete') }} |
@foreach ($states as $state)
|
{{ $state->name }} |
{{ $state->country->nicename }} |
|
@endforeach
@endsection