Skip to content

Instantly share code, notes, and snippets.

@uno-de-piera
Created January 31, 2019 18:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save uno-de-piera/cfae6915d0c97f9cfcfe2c3837edf65d to your computer and use it in GitHub Desktop.
Save uno-de-piera/cfae6915d0c97f9cfcfe2c3837edf65d to your computer and use it in GitHub Desktop.
<?php
namespace App\Http\Controllers;
class HomeController extends Controller
{
public function index () {
return 'home controller index';
}
}
<?php
use Illuminate\Support\Facades\Route;
Route::get('home', 'HomeController@index');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment