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