@extends('layouts.app') @section('title','Price History') @section('content')

Price history

{{ $product->product_code }} ยท {{ $product->name_en }}

@forelse($histories as $h)@empty@endforelse
DatePrice typeOldNewChanged byReference
{{ $h->created_at->format('d M Y H:i') }}{{ str_replace('_',' ',ucfirst($h->price_type)) }}{{ number_format((float)$h->old_price,4) }}{{ number_format((float)$h->new_price,4) }}{{ $h->changedBy?->name }}{{ $h->reference }}
No price changes recorded.
@endsection