Remove route closures to allow route caching

This commit is contained in:
Jonny Barnes 2017-03-03 14:23:56 +00:00
parent 4024b18e65
commit 37f701b105
6 changed files with 48 additions and 17 deletions

View file

@ -0,0 +1,18 @@
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
class StaticRoutesController extends Controller
{
public function projects()
{
return view('projects');
}
public function colophon()
{
return view('colophon');
}
}