@extends('panel.layout.app') @section('title', __('Support Requests')) @section('content')
@if(Auth::user()->type != 'admin') @endif
@foreach($items as $entry) @endforeach
{{__('Ticked ID')}} {{__('Status')}} {{__('Category')}} {{__('Subject')}} {{__('Priority')}} {{__('Created At')}} {{__('Last Updated')}} {{__('Actions')}}
{{$entry->ticket_id}} {{__($entry->status)}} {{__($entry->category)}} {{__($entry->subject)}} {{__($entry->priority)}} {{$entry->created_at}} {{$entry->updated_at}} {{__('View')}}
@endsection @section('script') @endsection