@extends('adminlte::page') @section('title', config('app.name') . ' | ' . __('Invitation management')) @section('content_header')
{{ __('Email') }} | {{ __('IP Address') }} | {{ __('Status') }} | {{ __('Notified?') }} | {{ __('Received at') }} | {{ __('Actions') }} |
---|---|---|---|---|---|
{{ $invite->requestor_email }} | {{ $invite->requestor_ip_address }} | @php $statusColors = [ 'approved' => 'success', 'denied' => 'danger', 'pending' => 'warning', 'completed' => 'primary' ]; $status = strtolower($invite->status); $color = $statusColors[$status] ?? 'secondary'; @endphp {{ __(ucfirst($status)) }} | @if($invite->notified) {{ __('Yes') }} @else {{ __('No') }} @endif | {{ $invite->created_at->format('Y-m-d H:i') }} | @if(strtolower($invite->status) === 'pending') @endif |
{{ __('Here, you can manage the invitation system, and approve any invite requests that might have come through. You can also send invites from here if necessary.') }}