mirror of
https://github.com/snipe/snipe-it.git
synced 2024-12-26 06:04:08 -08:00
Update web.php
This commit is contained in:
parent
f2242fa32e
commit
5dcf9fbb50
|
@ -25,12 +25,12 @@ Route::group(['middleware' => 'auth'], function () {
|
||||||
|
|
||||||
Route::get(
|
Route::get(
|
||||||
'{locationId}/printonlyassignedtolocation',
|
'{locationId}/printonlyassignedtolocation',
|
||||||
[ 'as' => 'locations.printonlyassignedtolocation', 'uses' => 'LocationsController@printOnlyAssignedToLocation' ]
|
[ 'as' => 'locations.print_assigned', 'uses' => 'LocationsController@print_assigned' ]
|
||||||
);
|
);
|
||||||
|
|
||||||
Route::get(
|
Route::get(
|
||||||
'{locationId}/printallassignedtolocation',
|
'{locationId}/printallassignedtolocation',
|
||||||
[ 'as' => 'locations.printallassignedtolocation', 'uses' => 'LocationsController@printAllAssignedToLocation' ]
|
[ 'as' => 'locations.print_all_assigned', 'uses' => 'LocationsController@print_all_assigned' ]
|
||||||
);
|
);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Reference in a new issue