@extends('layouts.dashboard') @section('title', 'Dashboard') @section('page_content')
| Ref | Type | Party | Warehouse | Date | Amount | Status |
|---|---|---|---|---|---|---|
| {{ $row->transaction_no }} | {{ strtoupper(str_replace('_', ' ', $row->type)) }} | {{ $row->party?->name ?? '-' }} | {{ $row->warehouse?->name ?? '-' }} | {{ $row->date?->format('Y-m-d') ?? '-' }} | {{ number_format((float) $row->amount, 2) }} | {{ ucfirst($row->status) }} |
| No transactions found. | ||||||