@extends('Layouts.app') @section('content')

Daftar Course

{{-- Alert Success --}} @if(session('success')) @endif {{-- Alert Error (optional) --}} @if(session('error')) @endif
{{-- Search Form --}}
@foreach($courses as $course)

{{-- Info Course di kiri --}} {{ $course->title }} | {{ $course->code }} | {{ $course->description }} | {{ $course->lecturer_name }} | {{ $course->semester }} {{ $course->academic_year }} {{-- Tombol Aksi di kanan --}}
{{-- Tombol Enrol --}}
@csrf


@endforeach
{{ $courses->links('pagination::tailwind') }}
@endsection