@extends('layouts.app') @section('title', 'Pharmacy | Receive Products') @section('content') {{-- Page header removed per UI cleanup; sidebar already names the page. The "+ Receive Products" CTA is the page's primary action, so it sits on the first row of the filters card at the top right where the user expects to find it without scrolling. --}} {{-- Filters --}}

Received Stock

Receive Products
@if(request()->hasAny(['search','status','supplier_id'])) Clear @endif
{{-- Table --}}
@forelse($receipts as $r) @empty @endforelse
Date Received Supplier Items Grand Total Payment Received By Status
{{ $r->date_received->format('d M Y') }} {{ $r->supplier->name ?? '—' }} {{ $r->items_count }} KES {{ number_format($r->grand_total, 2) }} {{ str_replace('_', ' ', $r->payment_method) }} {{ $r->receivedBy->name ?? '—' }} @if($r->status === 'completed') Completed @else Draft @endif View @if($r->status === 'draft') Edit @endif
No goods received notes found. Receive your first delivery →
@if($receipts->hasPages())
{{ $receipts->links() }}
@endif
@endsection