@extends('backend.layout') @section('content')
{{ session()->get('course_status_warning') }}
{{ __('Ticket ID') }} | {{ __('User Type') }} | {{ __('Username') }} | {{ __('Email') }} | {{ __('Subject') }} | {{ __('Status') }} | {{ __('Action') }} | |
---|---|---|---|---|---|---|---|
{{ $item->id }} | {{ ucfirst($item->user_type) }} | @if ($item->user_type == 'organizer') @if ($item->organizer) {{ @$item->organizer->username }} @else - @endif @else @if ($item->customer) {{ @$item->customer->username }} @else - @endif @endif | {{ $item->email != '' ? $item->email : '-' }} | {{ $item->subject }} | @if ($item->status == 1) {{ __('Pending') }} @elseif($item->status == 2) {{ __('Open') }} @elseif($item->status == 3) {{ __('Closed') }} @endif |
|