@extends('layouts.app') @section('content')
Product Details
| Date | Quantity | Purchase Price | Supplier |
|---|---|---|---|
| {{ $entry->date ? \Carbon\Carbon::parse($entry->date)->format('M d, Y') : 'N/A' }} | {{ $entry->quantity }} | BDT{{ number_format($entry->purchase_price ?? 0, 2) }} | @if($entry->supplier) {{ $entry->supplier->name }} @else N/A @endif |
No stock entries found
| Date | Quantity | Sale Price | Customer |
|---|---|---|---|
| {{ $sale->date ? \Carbon\Carbon::parse($sale->date)->format('M d, Y') : 'N/A' }} | {{ $sale->quantity }} | BDT{{ number_format($sale->sale_price ?? 0, 2) }} | {{ $sale->customer_name ?? 'Walk-in' }} |
No sales history found