@if($existingQueries->count() > 0)
|
ID |
Query |
Sort Order |
Created At |
Actions |
@foreach($existingQueries as $query)
|
{{ $query->id }} |
{{ Str::limit($query->query, 80) }} |
{{ $query->sort_order ?? 0 }} |
{{ $query->created_at->format('d M Y H:i') }} |
|
@endforeach
@else
No existing client queries found
@endif