bozzemagiche/resources/views/plugins/dashboard/widgets/users-awaiting-approval.blade.php
2025-09-14 18:41:00 +02:00

9 lines
460 B
PHP

@if ($count)
<div class="alert alert-warning d-flex justify-content-between align-items-center">
<p class="mb-0">@lang('There are <strong>:count</strong> user(s) waiting on your approval to be able to access the application.', ['count' => $count])</p>
<a href="{{ route('users.index', ['status' => \Vanguard\Support\Enum\UserStatus::WAITING_APPROVAL]) }}" class="btn btn-primary">
@lang('Review')
</a>
</div>
@endif