Revize 1bcdcb05
Přidáno uživatelem Adam Mištera před téměř 5 roky(ů)
routes/web.php | ||
---|---|---|
20 | 20 |
Route::get('/artefact/like/{id}', 'ArtefactController@like'); |
21 | 21 |
Route::get('/artefact/unlike/{id}', 'ArtefactController@unlike'); |
22 | 22 |
Route::get('/category/{id}', 'ArtefactController@showCategory'); |
23 |
Route::get('/detail/like/{id}', 'DetailsController@like'); |
|
24 |
Route::get('/detail/unlike/{id}', 'DetailsController@unlike'); |
|
23 | 25 |
Route::resource('/detail', 'DetailsController', array('only' => array('index', 'show'))); |
24 | 26 |
Route::resource('/categories', 'CategoriesController', array('only' => array('index'))); |
25 | 27 |
Route::resource('/favartefacts', 'FavoriteArtefactsController', array('only' => array('index', 'show', 'store'))); |
Také k dispozici: Unified diff
Issue #7955 @1h
[+] Vizualizace metadat
[+] Zprovoznění like/unlike
[+] Oprava dokumentace