@extends('admin.layouts.app') @section('content')
{{-- navbar - top --}} @include('admin.layouts.topbar')
{{-- navbar - side --}} @include('admin.layouts.nav')

{{ __('Support Center') }}

@if(Request::exists('status')) @endif
@forelse ($supportTickets as $supportTicket) {{-- --}} @empty @endforelse
{{ __('Created On') }} {{ __('User ID') }} {{ __('Name') }} {{ __('Subject') }} {{ __('Closed On') }} {{ __('Status') }} {{ __('Actions') }}
{{ \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
{{ __('Looks like there\'s a VOID!') }}
{{ $supportTickets->withQueryString()->render("pagination::bootstrap-5") }}
@endsection @extends('admin.layouts.footer')