Showing 10 of 1,204 results.

The is:before Filter | The "is" Filters

…Zones Meerkat stores all dates as UTC timestamps. 1 {{ meerkat : responses filter = " is:before(Jan 1st 2021) " }} 2 3 {{ comments }} 4 <!-- Render your comment thread here. --> 5 {{ /comments }} 6 7 {{ /meerkat : responses }} Meerkat uses Carbon...

Example Use | Laravel 5: Hashing Strings With bcrypt

The following example demonstrates how to call the bcrypt function: 1 for ( $ i = 0 ; $ i < 10 ; $ i ++ ) 2 { 3 // echo the hash and an HTML line break 4 echo bcrypt ( ' test ' ) , ' <br> ' ; 5 } The above example would output something similar to...

Laravel ViewErrorBag Public API: count

…rates on the default MessageBag instance. Because of this adding the MessageBag formErrors did not affect the count, but setting the same MessageBag instance as the value for the default key did change the results of the count method.This article...

Laravel 5: Throwing HTTP Exceptions With abort

…ny\Component\HttpKernel\Exception\NotFoundHttpException using only the user supplied $message .The signature of the abort function is: 1 function abort ( 2 $ code , 3 $ message = ' ' , 4 array $ headers = [ ] ` 5 );The following example assumes...

Template IDE Hints

…mments to improve code completion, suggestions, provide inline documentation, and other advanced features. The extension is capable of determining which blueprint fields to show in suggestions based on common collection configurations, but there...

Laravel Array Helper Function: array_only

…except ) method. The signature for the only helper method is: only($array, $keys) Assuming that the $_POST super-global contains the following information: 1 array( 3 ) { 2 [ " first_name " ] " John " 3 [ " last_name " ] " Doe " 4 [ " password "...

Filter Search