Showing 10 of 2,145 results.

Laravel String Helper Function: lower

The lower helper method takes a given value and returns a lower cased variant. The signature for the lower helper function is: lower($value) 1 use Illuminate \ Support \ Str ; 2 3 // all lower cased 4 echo Str :: lower ( ' ALL LOWER CASED ' ) ;

Limiting Visitor Data Collection | Product Data Privacy

Meerkat allows site administrators to easily disable what additional data your site collects about visitors when they submit a comment. These settings can be adjusted in the Control Panel. View the User and Visitor Data Privacy article to learn more.

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

The queue:failed-table command is used to create a new migration for the failed_jobs database table. This table is in order to keep track of any queue jobs that have failed. This command defines no parameters and can be used like so: 1 php artisan...

setEchoFormat | Blade Compiler

Set the echo format to be used by the 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...

Error Types | Parser Errors

There are a variety of specific error types, each encoding a unique scenario: Error Type Code Unknown 000 Unexpected End of Input 001 Unexpected Echo 002 Unexpected Raw Echo 003 Unexpected Triple Echo 004 Unexpected Comment 005 Unexpected...

Supplying Array Data | Laravel Artisan: Interacting With Commands

Some commands accept multiple pieces of information to be stored in the same input argument; array parameters are defined as the last parameter in a commands signature so that there is no ambiguity between array data and other input parameters....

Laravel 5: Generating CSRF Hidden HTML Fields With csrf_field

The csrf_field function can be used to generate a hidden HTML element containing the value of the CSRF token. These tokens can help to prevent cross-site request forgeries.The signature of the csrf_field function is: 1 function csrf_field ( ) ;For...