On Github stevegrunwell / laravel-in-a-nutshell
Play along at home!stevegrunwell.github.io/laravel-in-a-nutshell
Enables us to write expressive, easy-to-understand code without actually using static methods everywhere.
$value = Cache::get('myKey');
// is equal to:
$value = $app->make('cache')->get('myKey');
Canonical Laravel Vagrant box for Laravel application development.
Simple server configuration for Linode, DigitalOcean, and other cloud providers to run Laravel applications.
Laravel Documentationlaravel.com/docs
Laracastslaracasts.com