dealhub/routes/web/chat.php
kusowl a853b58f48 wip live chat
- add individual user chat view
- add routes
- wip: action to check and get inbox
2026-02-12 12:37:59 +05:30

7 lines
203 B
PHP

<?php
use App\Http\Controllers\ChatController;
Route::get('/chat', [ChatController::class, 'index'])->name('chat');
Route::get('/chat/{recipient}', [ChatController::class, 'show'])->name('chat.show');