@extends('admin.layouts.app') @section('title', 'Subjects') @section('breadcrumb') @endsection @section('content')
@forelse($subjects as $sub) @empty @endforelse
Subject Code Class Category Credits Hours Status Action
{{ $sub->name }} {{ $sub->code }} {{ $sub->class?->name }} @php $catColors = ['Major'=>'primary','Minor'=>'info','MDC_IDC'=>'warning','VAC'=>'success','AEC'=>'secondary','SEC'=>'danger','Miscellaneous'=>'secondary']; @endphp {{ str_replace('_', '/', $sub->category) }} {{ $sub->credit_hours ?? '—' }} @if ($sub->theory_hours) T:{{ $sub->theory_hours }}h @endif @if ($sub->practical_hours) P:{{ $sub->practical_hours }}h @endif {{ ucfirst($sub->status) }}
@csrf @method('DELETE')
No subjects found
{{ $subjects->withQueryString()->links() }}
@endsection