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