@extends('layouts.app') @section('content') @php($base = array_merge(['type'=>'sales'], request()->query()))
{{ __('app.report_filter_hint') }}
| {{ __('app.invoice') }} | {{ __('app.date') }} | {{ __('app.customer') }} | {{ __('app.currency') }} | {{ __('app.total') }} | {{ __('app.paid') }} | {{ __('app.due') }} |
|---|---|---|---|---|---|---|
| {{ $s->invoice_no }} | {{ $s->sale_date?->format('Y-m-d') }} | {{ $s->customer->name ?? '-' }} | {{ $s->currency ?? 'AFN' }} | {{ number_format($s->total,2) }} | {{ number_format($s->paid,2) }} | {{ number_format($s->due,2) }} |
| {{ __('app.no_records') }} | ||||||