@extends('layouts.master') @section('title','Support') @section('action','Query Lists') @section('main-content')
@include('admin.section.flash_message')

@include('admin.support.common.breadcrumb')
@canany(['show_query_detail','delete_query']) @endcanany @forelse($supportQueries as $key => $value) {{-- --}} @canany(['show_query_detail','delete_query']) @endcanany @empty @endforelse
# Title Date Query By Branch Concerned Department StatusAction
{{(($supportQueries->currentPage()- 1 ) * (\App\Models\Support::RECORDS_PER_PAGE) + (++$key))}} {{ucfirst($value->title)}} {{\App\Helpers\AppHelper::formatDateForView($value->created_at)}} {{ucfirst($value->createdBy?->name)}} {{ucfirst($value->createdBy?->branch?->name)}}{{ucfirst($value->createdBy?->department?->dept_name)}}{{ucfirst($value->departmentQuery?->dept_name)}} {{removeSpecialChars($value->status)}}
    @can('show_query_detail')
  • @endcan @can('delete_query')
  • @endcan

No records found!

{{$supportQueries->appends($_GET)->links()}}
@include('admin.support.show') @endsection @section('scripts') @include('admin.support.common.scripts') @endsection