@extends('admin.master') @section('title',@trans('Course Registration')) @section('content')
| # | @trans('Course Title') | @trans('City') | @trans('Price') | @trans('Currency') | @trans('Name') | @trans('Email') | @trans('Phone') | @trans('Status') | @trans('Payment Status') | @trans('Registration date') | @trans('Settings') | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ $loop->index + 1 }} | {{ @$item->course->trans->where('locale', $current_lang)->first()->title }} | @if($item->distribution) {{ @$item->distribution->city->trans->where('locale', $current_lang)->first()->title}} @else no city @endif | {{ $item->price}} | {{ $item->currency}} | {{ @$item->user->first_name }} {{ @$item->user->last_name }} | {{ @$item->user->email }} | {{ @$item->user->phone }} | {{ $item->status }} | @if ($item->payment_status == 'pending') @trans('Pending') @elseif ($item->payment_status == 'completed') @trans('Completed') @else @trans('Failed') @endif | {{ $item->created_at->format('Y-m-d') }} |
|
|
| @trans('No courses register found') | ||||||||||||