change_status_fix

This commit is contained in:
noor
2023-09-13 12:59:18 +05:30
parent 58af2b3e81
commit 6bc8802cc9
2 changed files with 23 additions and 13 deletions

View File

@@ -531,6 +531,7 @@ Route::middleware('web')->group(function () {
//===================================================================================
Route::middleware('auth')->group(function () {
Route::get('client-profile', [Client\helpdesk\GuestController::class, 'getProfile'])->name('client.profile'); /* User profile get */
Route::post('select_all', [Agent\helpdesk\TicketController::class, 'select_all'])->name('select_all');
Route::get('mytickets', [Client\helpdesk\GuestController::class, 'getMyticket'])->name('ticket2');
Route::get('myticket/{id}', [Client\helpdesk\GuestController::class, 'thread'])->name('ticket'); /* Get my tickets */