31 lines
1.2 KiB
PHP
31 lines
1.2 KiB
PHP
<?php
|
|
|
|
use Illuminate\Http\Request;
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| 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');
|
|
});
|
|
|
|
Route::auth();
|
|
|
|
Route::get('/deletes/{id?}', 'PhotoController@deletes')->where('id', '[0-9]+');;
|
|
Route::get('/duplicates/{id?}', 'PhotoController@duplicates')->where('id', '[0-9]+');;
|
|
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]+');;
|
|
Route::post('/duplicates', 'PhotoController@duplicatesUpdate');
|
|
Route::post('/deletes', 'PhotoController@deletesUpdate');
|
|
Route::post('/undelete/{id}', 'PhotoController@undelete')->where('id', '[0-9]+');;
|