@extends('admin.layouts.app')
@push('styles_top')
@endpush
@section('content')
{{ $webinar->title }} - {{ $pageTitle }}
{{ trans('update.manage_all_items_in_a_single_place') }}
| ID | {{ trans('admin/main.name') }} | {{ trans('admin/main.rate') }}(5) | {{ trans('update.learning') }} | {{ trans('admin/main.user_group') }} | {{ trans('panel.purchase_date') }} | {{ trans('admin/main.status') }} | {{ trans('admin/main.actions') }} |
|---|---|---|---|---|---|---|---|
| {{ $student->id ?? '-' }} |
{{ $student->full_name }}
@if($student->mobile)
{{ $student->mobile }}
@endif
@if($student->email)
{{ $student->email }}
@endif
|
{{ $student->rates ?? '-' }} | {{ $student->learning }}% | @if(!empty($student->getUserGroup())) {{ $student->getUserGroup()->name }} @else - @endif | {{ dateTimeFormat($student->purchase_date, 'j M Y | H:i') }} |
@if(empty($student->id))
{{-- Gift recipient who has not registered yet --}}
{{ trans('update.unregistered') }}
@elseif(!empty($webinar->access_days) and !$webinar->checkHasExpiredAccessDays($student->purchase_date, $student->gift_id))
{{ trans('panel.expired') }}
@elseif(!$student->access_to_purchased_item)
{{ trans('update.access_blocked') }}
@else
{{ trans('admin/main.active') }}
@endif
|
@if(!empty($student->id))
|