@extends('layouts.app') @section('title', 'MEC Sectors') @push('stylesheets') @include('partials.index-datatable-styles') @include('partials.filter-card-styles') @endpush @section('contents') Search @forelse ($sectors as $row) {{ $row->code }} {{ $row->name }} @if($row->status) Active @else Inactive @endif {{ $row->sort_order }} {{ $row->created_at->format('d M Y') }} @empty @endforelse @endsection @push('scripts') @include('partials.index-datatable-scripts') @endpush