@extends('layouts.layoutMaster') @section('title', 'Location Detail') @php $breadcrumbs = [ ['url' => route('dashboard'), 'label' => 'Dashboard'], ['url' => route('location.index'), 'label' => 'Locations'], ['url' => route('location.show', ['location' => $model->id]), 'label' => $model->name], ]; @endphp @section('content')
Location Details
@can('location.update') Edit @endcan
Location 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