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