Showing 10 of 1,322 results.

Laravel Artisan Queue Command: The queue:failed-table Command

…gration will create a failed_jobs database table with the following properties: The queue:failed-table command will allow itself to be run multiple times. This results in multiple migrations being generated. Be sure to change the table name of...

Laravel MessageBag Public API: isEmpty

…e collection. 12 $ collection [ ] = ' First item ' ; 13 14 // false 15 $ empty = $ collection -> isEmpty ( ) ;This article is the start of a mini-series about Laravel's ErrorMessageBag component. Click through the rest of the articles to continue...

Laravel Collection Public API: pull

pull($key, $default = null) The pull method will remove an item from the collection while returning its value. If the item is not in the collection, the optional $default value will be returned. The pull method will modify the original collection....

Laravel 5.5 String Helper Function: studly

Studly caps is a way of formatting text with capital letters, according to some pattern. Laravel's pattern is to remove the following word separators and capitalize the first letter of each word it finds (while not affecting the case of any other...

extend | Blade Compiler

…compiler extension. This method has the same behavior as the Illuminate\View\Compilers\BladeCompiler::extend method. You do not need to manually call this method to sync compiler information if you use the default compiler factory methods/service...

precompiler | Blade Compiler

…the compiler. This method has the same behavior as the Illuminate\View\Compilers\BladeCompiler::precompiler method. You do not need to manually call this method to sync compiler information if you use the default compiler factory methods/service...

setEchoFormat | Blade Compiler

…he compiler. This method has the same behavior as the Illuminate\View\Compilers\BladeCompiler::setEchoFormat method. You do not need to manually call this method to sync compiler information if you use the default compiler factory methods/service...