photo/app/Http/routes.php

24 lines
661 B
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();
Route::get('/info/{id}', 'PhotoController@info')->where('id', '[0-9]+');;
Route::get('/thumbnail/{id}', 'PhotoController@thumbnail')->where('id', '[0-9]+');;