@extends('procurement::layouts.master') @section('title','Price History') @section('content') @include('procurement::components.partials.page_header',['title'=>'Price History','actionRoute'=>route('procurement.price-history.create'),'actionLabel'=>'Add Price Entry'])
@forelse($records as $h) @empty @endforelse
ComponentSupplierDateQty BreakUnit PriceCurrencySourceNotes
{{ Str::limit($h->component->description,35) }} {{ $h->supplier->name ?? '—' }} {{ $h->effective_date->format('M j, Y') }} {{ $h->qty_break }} ${{ number_format($h->unit_price,4) }} {{ $h->currency }} {{ $h->source ?: '—' }} {{ Str::limit($h->notes,30) }}
@csrf @method('DELETE')
No price history yet.
{{ $records->links() }} @endsection