Recently,I just installed a chat package called Easychat. At first, it worked perfectly. I don't why but today I'm facing a problem where It said as in the pic
In the console it also said: Failed to load resource: the server responded with a status of 500 (Internal Server Error)
The weirdest thing is that when I go to Route file and change the URI from easychat to something different like easychat222 just for testing.
From
Route::get('/easychat', [
'as' => 'chatnow',
'uses' => 'EasychatController@getIndex'
]);
To
Route::get('/easychat222', [
'as' => 'chatnow',
'uses' => 'EasychatController@getIndex'
]);
and refresh the page. It works perfectly with the old uri (easychat) not with the new one. Anybody knows what is the problem here and please tell me how to fix it. Thank you very much!