@extends('admin.layouts.app')
@section('title', 'State')
@section('content')
| # |
Country |
State |
Status |
Action |
@foreach ($states as $index => $state)
| {{ $index + 1 }} |
{{ $state->country?->Name }} |
{{ $state->Name }} |
|
|
@endforeach
@endsection
@push('scripts')
@endpush