Files
new_raffles/Modules/Chatbot/routes/web.php
2025-09-03 16:39:24 +05:45

22 lines
693 B
PHP

<?php
use Illuminate\Support\Facades\Route;
use Modules\Chatbot\Http\Controllers\ChatbotController;
/*
|--------------------------------------------------------------------------
| 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!
|
*/
Route::group([], function () {
Route::post('/chatbot/query', [ChatbotController::class, 'query'])->name('chatbot.query');
Route::resource('chatbot', ChatbotController::class)->names('chatbot');
});