@extends('admin.layout.base') @section('title', 'INVOICE ') @section('styles') @endsection @section('content')
) }})
{{ Setting::get('acc_detail','') }}
{{ $invoice->corporate->address }}
{{ $invoice->corporate->mobile }},
Invoice Date : {{ $invoice->created_at }}
Invoice Period : {{ $invoice->from_date }} - {{ $invoice->to_date }}
| # | Booking ID | Customer name | Customer mobile | Payment Mode | VAT | Ride total |
|---|---|---|---|---|---|---|
| {{ $index + 1 }} | {{ $ride->booking_id }} | {{ $ride->user_name }} | {{ $ride->user_mobile }} | @if($ride->corporate_id !=0) CORPORATE @else {{ $ride->payment_mode }} @endif | {{ $ride->vat_percent }}% | {{ $ride->payment->currency }} {{ $ride->payment->total }} |
| Sub - Total amount: | {{ currency_amt($invoice->ride_total) }} | |||||
| Previous Balance : | {{ currency_amt($invoice->prev_balance) }} | |||||
| Last Payment: | {{ currency_amt($invoice->prev_payment) }} | |||||
| Current Payment: | {{ currency_amt($invoice->current_payment) }} | |||||
| Total : | {{ currency_amt($invoice->current_payment) }} | |||||