@extends('frontend.user.dashboard.user-master')
@section('style')
@endsection
@section('section')
@if(!empty(get_static_option('support_ticket_module_status')))
{{__('New Ticket')}}
@if(count($all_tickets) > 0)
{{__('ID')}} |
{{__('Title')}} |
{{__('Priority')}} |
{{__('Status')}} |
{{__('Action')}} |
@foreach($all_tickets as $data)
#{{$data->id}} |
{{$data->title}}
{{__('created at:')}} {{$data->created_at->format('D, d M Y')}}
|
|
|
|
@endforeach
@else
{{__('Nothing Found')}}
@endif
@endif
@endsection
@section('scripts')
@endsection