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

Curated Onboarding

The ideal solution for communities seeking a balance between open registration and invite-only membership

@if((bool) config_cache('instance.curated_registration.enabled'))
@include('admin.curated-register.partials.nav') @if($records && $records->count())
@if(in_array($filter, ['all', 'open'])) @endif @foreach($records as $record) @if(in_array($filter, ['all', 'open'])) @endif @endforeach
ID UsernameStatusReason for Joining Email Created
#{{ $record->id }}

@{{ $record->username }}

{!! $record->adminStatusLabel() !!} {{ str_limit($record->reason_to_join, 100) }}

{{ str_limit(\Illuminate\Support\Str::mask($record->email, '*', 5, 10), 10) }}

{{ $record->created_at->diffForHumans() }}
{{ $records->links() }}
@else

No {{ request()->filled('filter') ? request()->filter : 'open' }} applications found!

@endif
@else @include('admin.curated-register.partials.not-enabled') @endif @endsection