Skip to content

Instantly share code, notes, and snippets.

@nickdavies791
Last active April 1, 2019 08:50
Show Gist options
  • Save nickdavies791/221dcbc392881077c6640f248b96a4fb to your computer and use it in GitHub Desktop.
Save nickdavies791/221dcbc392881077c6640f248b96a4fb to your computer and use it in GitHub Desktop.
Using the __invoke method for dynamic view rendering in Laravel
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
class PagesController extends Controller
{
/**
* Return the requested view.
*
* @param Request $request
* @return \Illuminate\View\View
*/
public function __invoke(Request $request)
{
abort_unless(view()->exists($request->page), 404);
return view($request->page);
}
}
<?php
/*
|--------------------------------------------------------------------------
| 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('/{page}', 'PagesController');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment