post('/', [CallController::class, 'store'])->name('store'); Route::prefix('operator') ->controller(ProfileController::class) ->group(function () { Route::get('/online', 'online')->name('online'); Route::get('/offline', 'offline')->name('offline'); });