@extends('layouts.layoutMaster') @section('title', 'Price Detail') @php $breadcrumbs = [ ['url' => route('dashboard'), 'label' => 'Dashboard'], ['url' => route('price.index'), 'label' => 'Price'], ['url' => route('price.show', ['price' => $model->id]), 'label' => 'Price #' . $model->id], ]; @endphp @section('content')
| Route | {{ $model->route ? $model->route->origin->name . ' - ' . $model->route->destination->name : '-' }} |
| Loadout | {{ $model->loadout->name ?? '-' }} |
| Customer | {{ $model->customer->full_name ?? '-' }} |
| Price | {{ \App\Helpers\Helpers::formatCurrency($model->price, 2) }} |
| Notes | {{ $model->notes ?: '-' }} |