photo/app/Http/routes.php

31 lines
1.2 KiB
PHP
Raw Normal View History

2016-06-20 13:35:59 +00:00
<?php
2016-06-22 05:49:20 +00:00
use Illuminate\Http\Request;
2016-06-20 13:35:59 +00:00
/*
|--------------------------------------------------------------------------
| Application Routes
|--------------------------------------------------------------------------
|
| Here is where you can register all of the routes for an application.
| It's a breeze. Simply tell Laravel the URIs it should respond to
| and give it the controller to call when that URI is requested.
|
*/
Route::get('/', function () {
return view('welcome');
});
2016-06-22 05:49:20 +00:00
Route::auth();
2016-06-30 06:01:12 +00:00
Route::get('/deletes/{id?}', 'PhotoController@deletes')->where('id', '[0-9]+');;
2016-06-29 23:32:57 +00:00
Route::get('/duplicates/{id?}', 'PhotoController@duplicates')->where('id', '[0-9]+');;
2016-06-22 05:49:20 +00:00
Route::get('/info/{id}', 'PhotoController@info')->where('id', '[0-9]+');;
Route::get('/thumbnail/{id}', 'PhotoController@thumbnail')->where('id', '[0-9]+');;
Route::get('/view/{id}', 'PhotoController@view')->where('id', '[0-9]+');;
Route::post('/delete/{id}', 'PhotoController@delete')->where('id', '[0-9]+');;
2016-06-30 06:01:12 +00:00
Route::post('/duplicates', 'PhotoController@duplicatesUpdate');
Route::post('/deletes', 'PhotoController@deletesUpdate');
Route::post('/undelete/{id}', 'PhotoController@undelete')->where('id', '[0-9]+');;