system rentals pages

This commit is contained in:
2020-08-12 02:12:49 -05:00
parent 57fbc092c8
commit ed7e2c9bb4

View File

@@ -194,11 +194,11 @@ Route::group(['middleware' => ['auth']], function(){
/** /**
* System Rentals Controller display pages * System Rentals Controller display pages
*/ */
Route::get('/system/rental/dashboard', 'RentalSystem\RentalAdminController@displayRentalSystems'); Route::get('/system/rental/dashboard', 'SystemRentals\RentalAdminController@displayRentalSystems');
Route::get('/system/rental/add', 'RentalSystem\RentalAdminController@displayAddRentalSystem'); Route::get('/system/rental/add', 'SystemRentals\RentalAdminController@displayAddRentalSystem');
Route::post('/system/rental/add', 'RentalSystem\RentalAdminController@addRentalSystem'); Route::post('/system/rental/add', 'SystemRentals\RentalAdminController@addRentalSystem');
Route::post('/system/rental/update', 'RentalSystem\RentalAdminController@updateRentalSystem'); Route::post('/system/rental/update', 'SystemRentals\RentalAdminController@updateRentalSystem');
Route::post('/system/rental/remove', 'RentalSystem\RentalAdminController@removeRentalSystem'); Route::post('/system/rental/remove', 'SystemRentals\RentalAdminController@removeRentalSystem');
/** /**
* Test Controller display pages * Test Controller display pages