PHP Classes

File: routes/web.php

Recommend this page to a friend!
  Classes of Chun-Sheng, Li   Figlet Generator   routes/web.php   Download  
File: routes/web.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Figlet Generator
Generate text banners with given fonts
Author: By
Last change:
Date: 1 month ago
Size: 569 bytes
 

Contents

Class file image Download
<?php

/*
|--------------------------------------------------------------------------
| Web Routes
|--------------------------------------------------------------------------
|
| This file is where you may define all of the routes that are handled
| by your application. Just tell Laravel the URIs it should respond
| to using a Closure or controller method. Build something great!
|
*/

Route::get('/', 'WelcomeController@showWelcome');

Route::get('figlet/about', 'WelcomeController@showAbout');

Route::post('figlet/generate', 'GenerateFigletController@genFiglet');