@extends('admin.partial.template-full') @section('section')

Back to Curated Onboarding

Application #{{ $record->id }}

@if($record->is_closed) @else Open / Awaiting Admin Action @endif
Details
Username
{{ $record->username }}
Email
{{ $record->email }}
Created
{{ $record->created_at->diffForHumans() }}
@if($record->email_verified_at)
Email Verified
{{ $record->email_verified_at->diffForHumans() }}
@else
Email Verified
Not yet
@endif
Reason for Joining
{{ $record->reason_to_join }}
@include('admin.curated-register.partials.activity-log', [ 'id' => $record->id, 'is_closed' => $record->is_closed, 'is_approved' => $record->is_approved, 'is_rejected' => $record->is_rejected, 'action_taken_at' => $record->action_taken_at, 'email_verified_at' => $record->email_verified_at ])
@endsection @push('styles') @endpush