@extends('layouts.main') @section('more-scripts') @endsection @section('main-content')
Basic details

First Name: {{ $applicant->firstname }}

Last Name: {{ $applicant->lastname }}

Email: {{ $applicant->email }}

Phone: {{ $applicant->phone }}

Address: {{ $applicant->address ?? '-' }}

Description: {{ $applicant->description ?? '-' }}

Payer Id: {{ $applicant->payer_id ?? '-' }}

Applicant Bills
@include('components.payment.generated_bills', [ 'showMinistryColumn' => true, 'showDepartmentColumn' => true, 'showServiceColumn' => true, ])
Applicant Payments
@include('components.payment.transactions', [ 'showMinistryColumn' => true, 'showDepartmentColumn' => true, 'showServiceColumn' => true, ])
@include('components.payment.transaction-details-modal')
@endsection