@extends('admin.admin_master') @section('admin')

Customer Invoice

Back

{{ $payment }}

Customer Invoice ( Invoice No: #{{ $payment['invoice']['invoice_no'] }} )

Customer Name Customer Mobile Address
{{ $payment['customer']['name'] }} {{ $payment['customer']['mobile_no'] }} {{ $payment['customer']['email'] }}
@php $total_sum = '0'; $invoice_details = App\Models\InvoiceDetail::where('invoice_id',$payment->invoice_id)->get(); @endphp @foreach($invoice_details as $key => $details) @php $total_sum += $details->selling_price; @endphp @endforeach
Sl Category Product Name Current Stock Quantity Unit Price Total Price
{{ $key+1 }} {{ $details['category']['name'] }} {{ $details['product']['name'] }} {{ $details['product']['quantity'] }} {{ $details->selling_qty }} {{ $details->unit_price }} {{ $details->selling_price }}
Subtotal ${{ $total_sum }}
Discount Amount ${{ $payment->discount_amount }}
Paid Amount ${{ $payment->paid_amount }}
Due Amount ${{ $payment->due_amount }}
Grand Amount

${{ $payment->total_amount }}

@endsection