debug online method

This commit is contained in:
2025-05-06 14:29:37 +03:30
parent 1a1a0aa57b
commit dad61c212b
4 changed files with 15 additions and 6 deletions

View File

@@ -1,7 +1,15 @@
<?php
use App\Http\Controllers\CallController;
use App\Http\Controllers\ProfileController;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Route;
Route::prefix('calls')->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');
});