Projekt

Obecné

Profil

Stáhnout (1.67 KB) Statistiky
| Větev: | Tag: | Revize:
1 5d28dbf4 Marek Lovčí
<?php
2
3
use Illuminate\Support\Facades\Route;
4
5
/*
6
|--------------------------------------------------------------------------
7
| Web Routes
8
|--------------------------------------------------------------------------
9
|
10
| Here is where you can register web routes for your application. These
11
| routes are loaded by the RouteServiceProvider within a group which
12
| contains the "web" middleware group. Now create something great!
13
|
14
*/
15
16 e8ef87aa Adam Mištera
Route::get('/', 'PagesController@index');
17 74e290c2 Adam Mištera
18 75508baf Marek Lovčí
Route::get('/verify/{id}', 'VerifyRegisterController@verifyUser');
19 74e290c2 Adam Mištera
Route::get('/artefact', 'ArtefactController@default');
20 10222730 Adam Mištera
Route::get('/artefact/{id}', 'ArtefactController@view');
21 75508baf Marek Lovčí
Route::get('/artefact/like/{id}', 'ArtefactController@like');
22
Route::get('/artefact/unlike/{id}', 'ArtefactController@unlike');
23 b323292b Marek Lovčí
Route::get('/category/{id}', 'ArtefactController@showCategory');
24 75508baf Marek Lovčí
Route::get('/category/multi/{id}', 'ArtefactController@showCategories');
25
Route::get('/detail/like/{id}', 'DetailsController@like');
26
Route::get('/detail/unlike/{id}', 'DetailsController@unlike');
27 c66c7237 rizir01
Route::resource('/detail', 'DetailsController', array('only' => array('index', 'show')));
28 e765fd91 Marek Lovčí
Route::resource('/categories', 'CategoriesController', array('only' => array('index')));
29 b323292b Marek Lovčí
Route::resource('/favartefacts', 'FavoriteArtefactsController', array('only' => array('index', 'show', 'store')));
30 75508baf Marek Lovčí
Route::resource('/charts', 'ChartsController', array('only' => array('index', 'show', 'store')));
31 e765fd91 Marek Lovčí
Route::get('/favmetadata', 'FavoriteMetadataController@index');
32 75508baf Marek Lovčí
Route::get('/favmetadata/unlike/{id}', 'FavoriteMetadataController@unlike');
33
Route::get('/artefact/{id}', 'ArtefactController@view');
34 c66c7237 rizir01
35 b323292b Marek Lovčí
36 21570473 Adam Mištera
Auth::routes();
37 c66c7237 rizir01
38 21570473 Adam Mištera
Route::get('/home', 'HomeController@index')->name('home');