Last active
April 1, 2019 08:50
-
-
Save nickdavies791/221dcbc392881077c6640f248b96a4fb to your computer and use it in GitHub Desktop.
Using the __invoke method for dynamic view rendering in Laravel
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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); | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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