{{-- Lead Tickets Tab Usage: @include('admin.leads.partials.tickets_tab', ['leadId' => $leadId]) --}} @php $ticketLeadDisplayName = ''; if (isset($lead)) { $ticketLeadDisplayName = trim($lead->dba ?? '') ?: trim(($lead->first_name ?? '') . ' ' . ($lead->last_name ?? '')); } $helpdeskTicketTypes = \App\Models\Masters\MasterHelpdeskTicketType::where('company_id', \Illuminate\Support\Facades\Auth::user()->company_id) ->where('status', 1) ->orderBy('display_order') ->get(); @endphp
{{-- Header --}}
Helpdesk Tickets
Add New Ticket
{{-- Controls --}}
@php $ticketCols = [ 'id' => 'ID', 'created_at' => 'Created', 'subject' => 'Subject', 'due_at' => 'Due', 'files_count' => 'Files', 'status' => 'Status', 'type' => 'Type', 'priority' => 'Priority', 'assigned' => 'Assigned', 'last_comment_at' => 'Last Comment', 'age' => 'Age', 'updated_at' => 'Modified' ]; @endphp @foreach($ticketCols as $colKey => $colLabel)
@endforeach
{{-- Table --}}
ID Created Subject Due Files Status Type Priority Assigned Last Comment Age Modified
{{-- Empty state --}}

There are no results in this table.

You can try expanding your search terms or changing the filters.

{{-- Loading --}}
Loading...
{{-- Pagination --}} @php $ticketsPerPageOptions = [10, 25, 50, 100, 500, 1000]; $ticketsDefaultPerPage = (int) ($userListingTableSize ?? config('settings.per_page_record', 25)); if ($ticketsDefaultPerPage && !in_array($ticketsDefaultPerPage, $ticketsPerPageOptions)) { $ticketsPerPageOptions[] = $ticketsDefaultPerPage; sort($ticketsPerPageOptions); } @endphp
Total records: 0
@push('page_script') @endpush