@extends('admin.layouts.mainlayout') {{-- Assuming you have a base layout --}} @section('content')

All Courses

{{-- Button to add a new course --}}
Add New Course
{{-- Success/Error Messages --}} @if (session('success')) @endif @if ($errors->any()) @endif {{-- Table to list courses --}} @if ($courses->isEmpty()) @else
@foreach ($courses as $course) {{-- Truncate long descriptions --}} @endforeach
ID Course Code Course Title Actions
{{ $course->id }} {{ $course->code }} {{ Str::limit($course->title, 50, '...') }}
{{-- Use flexbox for button spacing --}} View Edit
@csrf @method('DELETE')
@endif
@endsection @push('scripts') {{-- FontAwesome for icons (if you're using it) --}} @endpush