Normally everything works fine on localhost. When I throw the project to the server, only the homepage works.
When I add manually to this section from the database, I can pull the data.
Web site here: http://elsetea.com/public (running) but when I send a message from the contact section, my routes don't work (http://elsetea.com/public/#messages). What can I do in this situation.
Contact routing is as follows.
Route::namespace('Frontend')->group(function () {
Route::post('contact', 'ContactPageController@store')->name('contact-page.store');
});