created form for rental costs similar to flex structures

This commit is contained in:
2020-08-10 02:17:21 -05:00
parent 8dd1377090
commit 5fd183f95c
11 changed files with 478 additions and 2 deletions

View File

@@ -191,6 +191,15 @@ Route::group(['middleware' => ['auth']], function(){
Route::get('/supplychain/modify/bid', 'Contracts\SupplyChainController@displayModifySupplyChainContractBid');
Route::post('/supplychain/modify/bid', 'Contracts\SupplyChainController@modifySupplyChainContractBid');
/**
* System Rentals Controller display pages
*/
Route::get('/system/rental/dashboard', 'RentalSystem\RentalAdminController@displayRentalSystems');
Route::get('/system/rental/add', 'RentalSystem\RentalAdminController@displayAddRentalSystem');
Route::post('/system/rental/add', 'RentalSystem\RentalAdminController@addRentalSystem');
Route::post('/system/rental/update', 'RentalSystem\RentalAdminController@updateRentalSystem');
Route::post('/system/rental/remove', 'RentalSystem\RentalAdminController@removeRentalSystem');
/**
* Test Controller display pages
*/