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