@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')
| Category | {{ $model->name }} |