laravel-in-a-nutshell



laravel-in-a-nutshell

0 0


laravel-in-a-nutshell

A basic overview of Laravel 5.0 principles for developers new to the framework.

On Github stevegrunwell / laravel-in-a-nutshell

Laravel in a Nutshell

Play along at home!stevegrunwell.github.io/laravel-in-a-nutshell

Laravel Concepts

Facades

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');

Homestead

Canonical Laravel Vagrant box for Laravel application development.

laravel.com/docs/master/homestead

Forge

Simple server configuration for Linode, DigitalOcean, and other cloud providers to run Laravel applications.

forge.laravel.com

Additional Resources

Laravel Documentationlaravel.com/docs

Laracastslaracasts.com