short-url/routes/web.php

22 lines
729 B
PHP
Raw Normal View History

2020-07-01 08:57:45 +00:00
<?php
use Illuminate\Support\Facades\Route;
/*
|--------------------------------------------------------------------------
| Web Routes
|--------------------------------------------------------------------------
|
| Here is where you can register web routes for your application. These
| routes are loaded by the RouteServiceProvider within a group which
| contains the "web" middleware group. Now create something great!
|
*/
Route::get('/', function () {
return view('home');
});
Route::post('/s/g', "UrlShortenerController@createShortURL");
Route::get('/s/{pathGenerated}', "UrlShortenerController@openDestination");
Route::post('/s/{pathGenerated}/open/protection', "UrlShortenerController@openProtectedDestination");