@extends('layouts.student') @section('title', 'Student Timetable') @section('content')

Timetable

@if($timetable->isEmpty())
No timetable available.
@else @foreach($timetable as $row) @endforeach
Date Time Course Code Course Description Campus Venue Duration
{{ \Carbon\Carbon::parse($row->time)->format('Y-m-d') }} {{ \Carbon\Carbon::parse($row->time)->format('H:i') }} {{ $row->course_code }} {{ $row->course_description }} {{ $row->campus }} {{ $row->venue }} {{ $row->duration }}
@endif
@endsection