@extends('backend.layouts.main')
@section('title')
States Management
@endsection
@section('content')
| S.N. |
Name |
Display Order |
Status |
Actions |
@foreach ($states as $state)
| {{ $loop->iteration }} |
{{ $state->name_en }} |
{{ $state->display_order }} |
@if ($state->is_published)
Published
@else
Draft
@endif
|
|
@endforeach
@endsection
@section('scripts')
@endsection