@extends('layouts.app') @section('title', $topic->title) @php $breadcrumbs = [ ['label' => 'Dashboard', 'url' => route('dashboard'), 'icon' => 'fa-home'], ['label' => 'Toolbox Topics', 'url' => route('toolbox-topics.index'), 'icon' => 'fa-book'], ['label' => $topic->title, 'url' => null, 'active' => true] ]; @endphp @section('content')
{{ $topic->is_active ? 'Active' : 'Inactive' }} @if($topic->is_mandatory) Mandatory @endif
{{ $talk->scheduled_date->format('M d, Y') }} @if($talk->department) {{ $talk->department->name }} @endif