@extends('layouts.admin') @section('title','Applicants Search') @section('content')

Applicants Search {{-- 0 --}}

{{--
--}}
Filter
@error('status')
{{ $message }}
@enderror
@if (!$applicants->isEmpty() ) @if ($applicants[0]->total_fees != null) @endif @endif @can(['payment.view', 'payment.list', 'payment.search', 'applicant.view']) @endcan @forelse ($applicants as $key=>$applicant) @if ($applicant->total_fees) @endif @can(['payment.view', 'payment.list', 'payment.search', 'applicant.view']) @endcan @empty @endforelse
id Code Applicant StatusTotal FeesPhoneactions
{{ ++$key }}
{{ mb_substr(\Illuminate\Support\Str::ucfirst(($applicant->applicant_name)), 0, 1) }}
{{ $applicant->applicant_name }} {{ $applicant->applicant_email }}
{{ $applicant->total_fees? 'Paid':'Not Paid' }} {{ $applicant->total_fees }} {{ $applicant->applicant_phone }} Actions
{{-- empty table --}}

There is no data!

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

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

@endsection