@extends('layouts.main') @section('more-styles') @endsection @section('main-content')
logo
  • Service: {{ $service->name }}
  • Date:{{ $invoice->created_at->format('d M, Y') }}
  • @if($invoice->billing_address)
  • Address: {{ $invoice->billing_address }}
  • @endif
@php $ministryName = $invoice->ministryName(); $ministryStringArray = splitByWords($ministryName, 4); @endphp

Bill

@foreach($ministryStringArray as $text) {{ $text }}@if($loop->remaining > 0)
@endif @endforeach

  • Payment Code: #{{ $invoice->payment_code }}
@foreach($demandNotices as $notice) @endforeach
Description Quantity Amount
{{ $notice->item }} {{ $notice->quantity }} {{ number_format($notice->amount, 2) }}
Amount Paid {{ number_format($invoice->total_amount_paid, 2) }}
Balance Amount {{ number_format($invoice->invoice_amount - $invoice->total_amount_paid, 2) }}
Total Amount {{ number_format($totalAmount, 2) }}

Billed To

{{ $application->applicant->FullName }}

  • Bill Number: #{{ $invoice->id }}
{!! QrCode::size(250)->generate(config('app.OGSG_GENERAL_PAYMENT_URL') . $invoice->payment_code); !!}

Make payment at www.pay.ogunstate.gov.ng or through banks and other OGSG approved payment channels. You will need the Payment Code on this bill to make payment

@endsection @section('more-scripts') @endsection