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