@extends('layouts.app', ['breadcrumbs' => [ ['href'=> route('dashboard'), 'text'=> 'Dashboard'], ['href'=> route('timetables.index'), 'text'=> 'timetables'], ['href'=> route('timetables.show', $timetable->id), 'text'=> "View $timetable->name", 'active'], ]]) @section('title', __("View $timetable->name")) @section('page_heading', __("View $timetable->name") ) @section('content') Print Timetable @livewire('show-timetable', ['timetable' => $timetable]) @endsection