@extends('layouts.layoutMaster') @section('title', ($model->id ? 'Update' : 'Create') . ' Account Type') @php $m = 'App\\Models\\AccountType'; $labels = Helper::getModelLabels($m); $breadcrumbs = [ ['url' => route('dashboard'), 'label' => 'Dashboard'], ['url' => route('account-type.index'), 'label' => 'Account Type'], ]; if ($model->id) { $breadcrumbs[] = [ 'url' => route('account-type.show', ['account_type' => $model->id]), 'label' => $model->name, ]; $breadcrumbs[] = [ 'url' => route('account-type.edit', ['account_type' => $model->id]), 'label' => 'Update Account Type', ]; } else { $breadcrumbs[] = [ 'url' => route('account-type.create'), 'label' => 'Create Account Type', ]; } @endphp @section('content')
{{ $model->id ? 'Update account type information' : 'Fill in the details below to create a new account type' }}