@extends('layouts.app') @section('title', __('Purchases')) @section('content')
| {{ __('Purchase') }} | {{ __('Supplier') }} | {{ __('Total') }} | {{ __('Paid / Due') }} | {{ __('Status') }} |
|---|---|---|---|---|
| {{ $purchase->purchase_number }}{{ \App\Support\DualDate::format($purchase->purchase_date, 'd M Y') }} | {{ $purchase->supplier?->name ?? '-' }} | {{ number_format($purchase->subtotal, 2) }} {{ $purchase->currency_code }} | {{ number_format($purchase->paid_amount, 2) }} / {{ number_format($purchase->due_amount, 2) }} | {{ __(ucfirst($purchase->status)) }} |
| {{ __('No purchases yet.') }} | ||||