I developed a chatbot using botman
framework and it's working fine on localhost. After uploading it on cpanel chat widget gives an error of 404 page not found
. Can anyone please help me regarding this I am not able to find the solution.
Here you can see the error https://abhishekjaiswal.in/
routes/botman.php
<?php
use App\Http\Controllers\BotManController;
use App\Conversations;
$botman = resolve('botman');
$botman->hears('hi|hello|good morning',
BotManController::class.'@startConversation');
$botman->hears('Who are you', function($bot) {
$bot->reply('I am a chatbot');
});
$botman->hears('ok|okay|hmm|great', BotManController::class.'@KnowMore');
$botman->fallback(function($bot) {
$bot->reply('Sorry, I did not understand what you saying. Dont feel embarass just
start with hi.');
});