Showing 10 of 1,322 results.

Laravel Artisan Tinker: The doc Command

…ntracts\Auth\Factory|\Illuminate\Contracts\Auth\ 27 Guard|\Illuminate\Contracts\Auth\StatefulGuard To contrast, the following example demonstrates how to retrieve the documentation for a class property; in this case, the doc command is being used...

Life Cycle Settings | Advanced Reply Forms

…can be used to alter the behavior of the default comment reply process. The current exposed setting is the closeOnCancel setting. By default, Meerkat will automatically remove the comment reply form when a user clicks on a "Cancel Reply" button....

Laravel Task Scheduling: Managing Task Output

…ethods for managing task output are only available when scheduling tasks using the command or exec methods (the command method is a utility wrapper for Artisan commands built on top of the exec method). This is because the scheduling system does...

Laravel Collection Public API: get

…[ 7 ' first ' => ' I am first ' , 8 ' second ' => ' I am second ' 9 ] ) ; 10 11 // I am second 12 $ second = $ collection -> get ( ' second ' ) ; By default, the get method will return null if a $key does not exist within the collection. However,...

Laravel Artisan Tinker: The clear-compiled Command

The clear-compiled command is used to clear the compiled classes and services application cache. These two files are located in the bootstrap/cache/ directory. The compiled classes cache is stored in a file named compiled.php and the services...

Custom Variable Input | Advanced Filtering

…ses filter = " user:in($usersToInclude) " }} 2 3 < ul > 4 {{ comments }} 5 < li > 6 < p > {{ author . name }} says: {{ content }} </ p > 7 </ li > 8 {{ /comments }} 9 </ ul > 10 11 {{ /meerkat : responses }} This feature works even in PHP support...