Showing 10 of 2,133 results.

Laravel Miscellaneous Helper Function: dd

dd() The dd function is a debug utility that will dump a set of values and then die. This means it will create a human-readable representation of the values and then stop execution of the script. The dd function will take into account if the...

Default Configuration | Blade Compiler

This section only applies if you are looking to manually construct a compiler instance. By default, the compiler factory and service bindings will keep the compiler instances in sync with the Laravel compiler. Internally this accomplished using...

Laravel MessageBag Public API: get

…at stored within the MessageBag instance (which can be retrieved using the getFormat method). Alternatively, developers can specify their own $format to customize the results each time the get method is executed. The get method will return an...

Laravel Artisan General Command: The tinker Command

The tinker command can be used to start an interactive language shell for interacting with your Laravel framework application. The tinker command defines an optional array input include . Traditionally this is used to include auto-loaders for...

Rebuilding Stillat.com

This is a blog post that I thought I was going to write about ten months ago; this is captured in the following public post I made on Twitter: Well that's almost embarrassing! Even with the fact that it took me about two months to start working on...

Laravel Artisan Generator Command: The make:request Command

The make:request command can be used to generate new request validation request classes. The command accepts a name for the newly created request class. The name will be used as the name of the class and the file. The following example...