@extends('layouts.app') @section('title', 'Price Records') @section('content')
Historical supplier price references
| Supplier | Item Details | Quantity | Price | Quoted | Actions |
|---|---|---|---|---|---|
|
{{ substr($record->supplier->codename, 0, 2) }}
{{ $record->supplier->codename }}
{{ $record->supplier->name }}
|
{{ $record->item_type }}
{{ $record->short_description }}
@if($record->size_display)
{{ $record->size_display }}
@endif
|
{{ $record->quantity_with_uom }}
|
{{ $record->unit_price_formatted }}
{{ $record->postage_display }}
|
{{ $record->quoted_at->format('M d, Y') }}
{{ $record->quoted_at->diffForHumans() }}
|
|
No price records found@if(request()->anyFilled(['search', 'supplier_id', 'item_type'])) No records match your filter criteria. @else Get started by creating your first price record. @endif Create Price Record |
|||||