@extends('layouts.admin') @section('title', 'Payment list') @section('content')

Applicants 0

{{-- {{ dd($applicants[0]->total_fees); }} --}} @if (!$applicants->isEmpty()) @if ($applicants[0]->total_fees != null) @endif @endif @if (!$applicants->isEmpty()) @if ($applicants[0]->total_fees != null) @endif @endif @can(['payment.view']) @if (request()->is_paid == 0) @endif @endcan @forelse ($applicants as $key=>$applicant) @if ($applicant->total_fees) @endif @if ($applicant->total_fees) @endif @can(['payment.view']) @if (request()->is_paid == 0) @endif @endcan @empty @endforelse
id Code ApplicantTotal FeesPhoneInvoiceactions
{{ ++$key }}
{{ mb_substr(\Illuminate\Support\Str::ucfirst($applicant->applicant_name), 0, 1) }}
{{ $applicant->applicant_name }} {{ $applicant->applicant_email }}
{{ $applicant->applicant_phone }} Actions Actions
{{-- empty table --}}

There is no data!

{{ $applicants->appends(Request::except('page'))->render('components._pagination') }}

Showing {{ $applicants->count() }} of {{ $applicants->total() }} record(s).

@endsection