@extends('layouts.master')
@section('title','Rangkuman '. __('Purchase Invoice'))
@section('css')
@endsection
@section('content')
| No | {{__('Purchase Invoice Number')}} | {{__('Supplier Code')}} | {{__('Supplier Name')}} | Nomor Dokumen Pemasok | {{__('Document Date')}} | @if(in_array('price', $privileges)){{__('Discount')}} | Subtotal | Tax Revenue | Add Tax | Total | @endif
|---|---|---|---|---|---|---|---|---|---|---|
| {{$loop->iteration}} | {{ $invoice->purchase_invoice_number }} | {{ $invoice->supplier_code }} | {{ $invoice->suppliers->supplier_name }} | {{$invoice->vendor_number??''}} | {{ \Carbon\Carbon::parse($invoice->document_date)->format('d M Y') }} | @if(in_array('price', $privileges)){{ number_format($invoice->disc_nominal, 2) }} | {{ number_format($invoice->subtotal, 2) }} | {{ number_format($invoice->tax_revenue, 2) }} | {{ number_format($invoice->add_tax, 2) }} | {{ number_format($invoice->total, 2) }} | @endif
| Total untuk range tanggal terpilih: | {{ number_format($totalAmount, 2) }} | @endif|||||||||