@extends('admin.layout.base') @section('title', 'INVOICE ') @section('styles') @endsection @section('content')

Carrier Invoice

INVOICE #{{ $invoice->invoice_id }}


 



Bank account details:

{{ Setting::get('acc_detail','') }}

To,

{{ $invoice->corporate->display_name }},

{{ $invoice->corporate->address }}
{{ $invoice->corporate->mobile }},

Invoice Date : {{ $invoice->created_at }}

Invoice Period : {{ $invoice->from_date }} - {{ $invoice->to_date }}

> @foreach($rides as $index => $ride) @endforeach
# 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) }}
@endsection @section('scripts') @endsection