after action reports

This commit is contained in:
2021-03-19 21:31:14 +09:00
parent d7d98b5195
commit dd64010236
8 changed files with 104 additions and 11 deletions

View File

@@ -41,9 +41,22 @@ Route::group(['middleware' => ['auth']], function(){
Route::post('/admin/remove/user', 'Dashboard\AdminDashboardController@removeUser');
Route::post('/admin/modify/user/display', 'Dashboard\AdminDashboardController@displayModifyUser');
Route::post('/admin/add/allowedlogin', 'Dashboard\AdminDashboardController@addAllowedLogin');
Route::post('/admin/rmoeve/allowedlogin', 'Dashboard\AdminDashboardController@removeAllowedLogin');
Route::post('/admin/remove/allowedlogin', 'Dashboard\AdminDashboardController@removeAllowedLogin');
Route::get('/admin/dashboard', 'Dashboard\AdminDashboardController@displayAdminDashboard');
/**
* After Action Report display pages
*/
Route::get('/reports/display/all', 'AfterActionReports\AfterActionReportsController@DisplayAllReports');
Route::get('/reports/display/report/form', 'AfterActionReports\AfterActionReportsController@DisplayReportForm');
Route::get('/reports/display/comment/form/{id}', 'AfterActionReports\AfterActionReportsController@DisplayCommentForm');
Route::post('/reports/store/new/report', 'AfterActionReports\AfterActionReportsController@StoreReport');
Route::post('/reports/store/new/comments', 'AfterActionReports\AfterActionReportsController@StoreComment');
/**
* After Action Reports Admin display pages
*/
/**
* Blacklist Controller display pages
*/