@extends('layouts.master')
@section('title', __('Sales Return'). ' Summary')
@section('css')
@endsection
@section('content')
| No | {{__('Sales Return Number')}} | {{__('Document Date')}} | @if(in_array('price', $privileges)){{__('Discount')}} | Subtotal | Tax Revenue | Add Tax | Total | @endif
|---|---|---|---|---|---|---|---|
| {{$loop->iteration}} | {{ $invoice->sales_return_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||||||