How to code laravel4
For those who don't know. These ways of code are equivalent.
//Facade
Route::get('/', function() {
return View::make('hello');
});
//Function
app('router')->get('/', function() {
return app('view')->make('hello');
});
//Array
$app['router ']->get('/', function() use ($app) {
return $app['view']->make('hello');
});
Written by Egi Gundari
Related protips
Have a fresh tip? Share with Coderwall community!
Post
Post a tip
Best
#Php
Authors
Sponsored by #native_company# — Learn More
#native_title#
#native_desc#