@extends('layouts.app') @section('title', 'MEC Regions') @push('stylesheets') @include('partials.index-datatable-styles') @include('partials.filter-card-styles') @endpush @section('contents')
@forelse ($regions as $data) {{ $data->name ?? '-' }} {{ $data->short_code ? $data->short_code : '—' }} {{ $data->scope_summary ?? '—' }} @if($data->status) Active @else Inactive @endif {{ $data->created_at->format('d M Y') }} @empty @endforelse
@endsection @push('scripts') @include('partials.index-datatable-scripts') @endpush