@extends('layouts.Member.master') @section('content')
{{ __('messages.no_invoices_available') }}
{{ __('messages.id') }} | {{ __('messages.invoice_number') }} | {{ __('messages.invoice_date') }} | {{ __('messages.due_date') }} | {{ __('messages.subtotal') }} | {{ __('messages.ppn') }} | {{ __('messages.grand_total') }} | {{ __('messages.status') }} | {{ __('messages.actions') }} |
---|---|---|---|---|---|---|---|---|
{{ $invoice->id }} | {{ $invoice->invoice_number }} | {{ \Carbon\Carbon::parse($invoice->invoice_date)->format('d M Y') }} | {{ \Carbon\Carbon::parse($invoice->due_date)->format('d M Y') ?? '-' }} | {{ number_format($invoice->subtotal, 2) }} | {{ number_format($invoice->ppn, 2) }} | {{ number_format($invoice->grand_total_include_ppn, 2) }} | {{ ucfirst($invoice->status) }} |