mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/shipping-portal.git
synced 2026-08-19 04:24:12 +00:00
9 lines
447 B
PHP
9 lines
447 B
PHP
<?php
|
|
|
|
use Illuminate\Support\Facades\Route;
|
|
|
|
Route::group(['prefix' => 'feedback', 'as' => 'feedback.', 'namespace' => 'HelpMenu'], function () {
|
|
Route::post('/list', 'ListQuestionsQAController@list')->name('list.question'); //meant to be publicly assessible WITHOUT login
|
|
Route::post('/submit', 'SubmitQAQuestionsController@submit')->name('submit.questions'); //meant to be publicly assessible WITHOUT login
|
|
});
|