@extends('layouts.app') @section('title', $priceRecord->item_type) @section('content')

{{ $priceRecord->item_type }}

Price Record Details

Item Information

Item Type
{{ $priceRecord->item_type }}
Description
{{ $priceRecord->item_description }}
Quantity
{{ $priceRecord->quantity_with_uom }}
@if($priceRecord->size_display)
Size
{{ $priceRecord->size_display }}
@endif

Supplier & Pricing

Unit Price
{{ $priceRecord->unit_price_formatted }}
per {{ $priceRecord->uom }}
Total Price
{{ $priceRecord->total_price_formatted }}
for {{ $priceRecord->quantity }} {{ $priceRecord->uom }}
Postage / Pickup
{{ $priceRecord->postage_display }}

Record Details

Quoted Date
{{ $priceRecord->quoted_at->format('M d, Y') }}
@if($priceRecord->notes)
Notes
{{ $priceRecord->notes }}
@endif
Created
{{ $priceRecord->created_at->format('M d, Y \a\t h:i A') }}
Last Updated
{{ $priceRecord->updated_at->format('M d, Y \a\t h:i A') }}

New Quote from {{ $priceRecord->supplier->codename }}

@csrf

View All Quotes from {{ $priceRecord->supplier->codename }}

Danger Zone

Delete this price record

Once deleted, this price record will be permanently removed from the system.

@csrf @method('DELETE')
@endsection