{{-- navbar - side --}}
@include('admin.layouts.nav')
{{ __('Support Center') }}
@if(Request::exists('status'))
@endif
| {{ __('Created On') }} |
{{ __('User ID') }} |
{{ __('Name') }} |
{{ __('Subject') }} |
{{ __('Closed On') }} |
{{ __('Status') }} |
{{ __('Actions') }} |
@forelse ($supportTickets as $supportTicket)
| {{ \Carbon\Carbon::parse($supportTicket->created_at)->format('M d, Y h:i:s A') }} |
{{ $supportTicket->user_id }} |
@if ($supportTicket->user()->exists())
{{ $supportTicket->user->name }}
@else
{{ __("N/A") }}
@endif
|
{{ $supportTicket->subject }} |
@if ($supportTicket->user()->exists())
{{ $supportTicket->user->name }}
@else
{{ __("N/A") }}
@endif
|
status == "In Progres") badge-warning @else badge-success @endif" style="font-size: 0.9rem;">
{{ $supportTicket->status }}
|
{{-- {{ $supportTicket->status }} | --}}
@if ($supportTicket->status != "Closed")
@endif
|
@empty
|
{{ __('Looks like there\'s a VOID!') }}
|
@endforelse
{{ $supportTickets->withQueryString()->render("pagination::bootstrap-5") }}
@endsection
@extends('admin.layouts.footer')