@extends('layouts.layoutMaster') @section('title', 'Truck Type Detail') @php $breadcrumbs = [ ['url' => route('dashboard'), 'label' => 'Dashboard'], ['url' => route('truck-type.index'), 'label' => 'Truck Type'], ['url' => route('truck-type.show', ['truck_type' => $model->id]), 'label' => $model->name], ]; @endphp @section('content')
Truck Type Details
@can('truck-type.update') Edit @endcan
Truck Type Name {{ $model->name }}
Created: {{ $model->created_at?->format('d/m/Y H:i') ?? '-' }} @if ($model->createdBy) by {{ $model->createdBy->name }} @endif
Last Updated: {{ $model->updated_at?->format('d/m/Y H:i') ?? '-' }} @if ($model->updatedBy) by {{ $model->updatedBy->name }} @endif
@endsection