Showing 10 of 2,145 results.

An Introduction to Laravel View Error Bags

The Illuminate\Support\ViewErrorBag class is generally used to communicate error messages with views and responses. The ViewErrorBag itself is essentially a container for Illuminate\Contracts\Support\MessageBag implementation instances. An...

Laravel Artisan Generator Command: The make:controller Command

The make:controller command can be used to quickly generate a new controller class file in the app/Http/Controllers directory. A name for the newly created controller must be provided. The name will become the name of the newly generated class and...

Facade Class Reference | Laravel 5 Facades

The following tables will list all the facades that are available by default. In addition, they will display the name of the service container binding as well as the class behind the facade. If a particular facade provides additional methods (that...

Procedure vs. Function vs. Method vs. ?

The field of programming and computer science is awash in technical terms with definitions for those terms that are only slightly different from each other. A good example of terms like this are procedure , function , method and the anonymous...