@extends('cms::layouts.master', ['dataTable' => true])
@section('title', 'Deleted Applicants')
@section('content')
SN.
Date
Name
Phone
Email
Deleted At
Deleted By
Action
@php
$count = count($applicants);
@endphp
@foreach ($applicants as $applicant)
{{ $count-- }}
{{ \Carbon\Carbon::parse($applicant->created_at)->format('d M, Y h:i A') }}
{{ $applicant->name }}
{{ $applicant->phone }}
{{ $applicant->email }}
{{ \Carbon\Carbon::parse($applicant->deleted_at)->format('d M, Y h:i A') }}
{{ optional($applicant->deletedBy)->name ?? 'N/A' }}
@endforeach
@endsection
@push('scripts')
@endpush