@extends('admin.layouts.app') @section('title', 'Subjects') @section('breadcrumb') @endsection @section('content')
@forelse($subjects as $sub) @empty @endforelse
Subject Code Class Semester Category Status Action
{{ $sub->name }} {{ $sub->code }} {{ $sub->class?->name ?? '--' }} {{ $sub->semester?->name ?? '--' }} @php $catColors = ['Major'=>'primary','Minor'=>'info','MDC_IDC'=>'warning','VAC'=>'success','AEC'=>'secondary','SEC'=>'danger','Miscellaneous'=>'secondary']; @endphp {{ str_replace('_', '/', $sub->category) }} {{ ucfirst($sub->status) }}
@csrf @method('DELETE')
No subjects found
@if ($subjects->hasPages())
{!! $subjects->withQueryString()->links('pagination::bootstrap-5') !!}
@endif
@endsection @push('scripts') @endpush