@extends('layout.mainlayout') @section('content')
@if(session('success'))
{{ session('success') }}
@endif
@foreach($purchases as $p) @endforeach
Date Name Description Category Qty Amount (Tsh) Recorded By
{{ \Carbon\Carbon::parse($p->date)->format('d M Y') }} {{ $p->name }} {{ $p->description ?? '-' }} {{ $p->category ?? 'N/A' }} {{ $p->qty }} {{ number_format($p->amount, 2) }} {{ $p->user_name ?? 'System' }}
@endsection