@extends('backend.layouts.main') @section('title') States Management @endsection @section('content')

States List

@foreach ($states as $state) @endforeach
S.N. Name Display Order Status Actions
{{ $loop->iteration }} {{ $state->name_en }} {{ $state->display_order }} @if ($state->is_published) Published @else Draft @endif
@endsection @section('scripts') @endsection