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

Corporate Invoice

INVOICE #{{ $invoice_id }}


 



Bank account details:

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

To,

{{ $corporate->display_name }},

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

Invoice Date : {{ $now->format('Y-m-d') }}

Invoice Period : {{ $from_date }} - {{ $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($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) }}
@endsection @section('scripts') @endsection