@extends('layouts.master') @section('page_title', 'View TimeTable') @section('content')
Name: {{ $ttr->name }}
Class: {{ $my_class->name }}
Year: {{ ($ttr->exam_id) ? 'Exam TimeTable' : 'Class TimeTable' }} {{ '('.$ttr->year.')' }}
@foreach($time_slots as $tms) @endforeach @foreach($days as $day) @if($ttr->exam_id) @else @endif @foreach($d_time->where('day', $day) as $dt) @endforeach @endforeach
Time
Date
{{ $tms->time_from }}
{{ $tms->time_to }}
{{ date('l', strtotime($day)) }}
{{ date('d/m/Y', strtotime($day)) }}
{{ $day }}{{ $dt['subject'] }}
{{--Print Button--}}
@endsection