@extends('layouts.admin') @section('header')
| Applicant | Status | Applied On | Actions | |
|---|---|---|---|---|
|
{{ $application->name }}
|
{{ $application->email }} | @if($application->status === 'pending') Pending @elseif($application->status === 'approved') Approved @else Rejected @endif | {{ $application->created_at->format('M j, Y') }} | View |
|
No applications found You don't have any guest applications yet. |
||||