laravel tips Laravel Route::redirect tip Did you know? You can quickly define a redirect route using Route::redirect('from', 'to') without defining a full route or controller for performing a simple redirect. You can customize
laravel tips Laravel config:cache tip Did you know? If you've cached your laravel configuration files with $ php artisan config:cache, env() function calls from everywhere except the config files will return null. > Loose recommendation: avoid
laravel tips Laravel Route::view tip Did you know? If your route or controller method needs to return a view. You can use Route::view('uri', 'view.name') instead of defining a full route and controller
laravel 02. Understanding Laravel — Facades Laravel is set up in a way that allows the developer to get up to speed as fast as possible and thus it comes with a lot of features baked
laravel 01. Understanding Laravel - The Service Container At the core of the Laravel framework [http://laravel.com], is the service container. The service container implements one of the several design patterns called Dependency Injection [https://martinfowler.com/
laravel 00. Understanding Laravel - Introduction An extension to the CodeIgniter [https://codeigniter.com/] framework that would provide certain features out of the box such as basic authentication and authorization for a side project that a