@extends('layouts.app') @section('title', 'MEC Sub Sectors') @push('stylesheets') @include('partials.index-datatable-styles') @include('partials.filter-card-styles') @endpush @section('contents')
@forelse ($subSectors as $data) {{ $data->name ?? '-' }} {{ $data->sector?->name ?? '-' }} @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