@extends('layouts.admin.master') @section('content')
Belum ada Proforma Invoice yang tersedia saat ini.
ID | PI Number | PI Date | PO Number | Distributor | Subtotal | PPN | Grand Total | DP | Actions |
---|---|---|---|---|---|---|---|---|---|
{{ $invoice->id }} | {{ $invoice->pi_number }} | {{ \Carbon\Carbon::parse($invoice->pi_date)->format('d M Y') }} | {{ $invoice->purchaseOrder->po_number }} | {{ $invoice->purchaseOrder->user->name }} | {{ number_format($invoice->subtotal, 2) }} | {{ number_format($invoice->ppn, 2) }} | {{ number_format($invoice->grand_total_include_ppn, 2) }} | {{ number_format($invoice->dp, 2) }} |
View
PDF
Download PDF
@if($invoice->payment_proof_path)
View First Payment Proof
Download First Payment Proof
@else
First Payment Proof Not Available
@endif
@if($invoice->second_payment_proof_path)
View Final Payment Proof
Download Final Payment Proof
@else
Final Payment Proof Not Available
@endif
@if(in_array($invoice->status, ['partially_paid', 'paid']))
Create Invoice
@endif
|