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