@extends('admin.layout.base') @section('title', 'INVOICE ') @section('styles') @endsection @section('content')
) }})
{{ Setting::get('acc_detail','') }}
{{ $corporate->address }}
{{ $corporate->mobile }},
Invoice Date : {{ $now->format('Y-m-d') }}
Invoice Period : {{ $from_date }} - {{ $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($ride_total) }} | |||||
| Previous Balance : | {{ currency_amt($prev_balance) }} | |||||
| Last Payment: | {{ currency_amt($prev_payment) }} | |||||
| Current Payment: | {{ currency_amt($current_payment) }} | |||||
| Total : | {{ currency_amt($current_payment) }} | |||||