@include('message')
@include('breadcrumb')
# |
{{trans($namespaceName.'/'.$modelName.'.'.'event_name')}} |
{{trans($namespaceName.'/'.$modelName.'.'.'visitor_name')}} |
{{trans($namespaceName.'/'.$modelName.'.'.'email')}} |
{{trans($namespaceName.'/'.$modelName.'.'.'request_status')}} |
{{trans($namespaceName.'/'.$modelName.'.'.'created_at')}} |
{{trans($namespaceName.'/'.$modelName.'.'.'updated_at')}} |
{{trans($namespaceName.'/'.$modelName.'.'.'actions')}} |
@foreach ($data as $row)
{{$loop->iteration}} |
{{json_decode($row->event_name,true)[app()->getLocale()]}} |
{{$row->visitor_name}} |
{{$row->email}} |
{{\App\Models\JoinEventRequest::getRequestStatus()[$row->status][app()->getLocale()]}}
|
{{$row->created_at}} |
{{$row->updated_at}} |
@if (auth()->user()->hasPermission('create_join-event-requests'))
@if(!$row->status)
@endif
|
@endif
@endforeach