D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
forge
/
josepharmacy.online
/
routes
/
Filename :
shared.php
back
Copy
<?php /* |-------------------------------------------------------------------------- | Web Routes |-------------------------------------------------------------------------- | | Here is where you can register web routes for your application. These | routes are loaded by the RouteServiceProvider within a group which | contains the "web" middleware group. Now create something great! | */ use Illuminate\Support\Facades\Route; // Chat file upload endpoint (no CSRF for easier integration with Firebase chat) Route::post('/chat/upload-file', [\App\Http\Controllers\Web\ChatFileController::class, 'uploadFile'])->name('chat.upload.file');