@extends('admin.master')
@section('title', 'Serial Tracker: ' . $serial_no)
@section('content')
Tracking Results for: {{ $serial_no }}
Purchase & Sourcing History
@forelse($data['purchase'] as $index => $p)
| {{ ++$index }} |
{{ date('d-M-Y', strtotime($p->date)) }} |
{{ $p->purchase_order_no ?? 'N/A' }} |
{{ $p->invoice_code }} | {{-- এটিই আপনার Purchase In No --}}
{{ $p->product_name }} |
{{ $p->serial_no }} |
{{ $p->supplier_name }} |
{{ $p->warehouse_name ?? 'Main Store' }} |
|
@empty
|
No purchase records found for this serial number.
|
@endforelse
Sales History
@endsection