@extends('backend.admin-master') @section('site-title') {{__('All Tickets')}} @endsection @section('style') @include('backend.partials.datatable.style-enqueue') @endsection @section('content')

{{__('All Tickets')}}

@foreach($all_tickets as $data) @endforeach
{{__('ID')}} {{__('Title')}} {{__('Department')}} {{__('User')}} {{__('Priority')}} {{__('Status')}} {{__('Action')}}
#{{$data->id}} {{$data->title}} {{$data->department->name ?? __('anonymous')}} {{$data->user->name ?? __('anonymous')}}
@endsection @section('script') @include('backend.partials.bulk-action',['action' => route('admin.support.ticket.bulk.action')]) @endsection