Showing 10 of 1,322 results.

Page Rankings | Thoughts on a "Guidance Engine"

…we go. How would you rank content in such a guidance engine? Well, the content is already heavily curated. Because of that there really wouldn't be too much of a need for pages to obsessively compete with each other (they still would, but not in...

route($channel, $route) | Laravel 5 Facades

The route method allows for the sending of notifications in an ad-hoc fashion. The following example demonstrates the basic usage of the route method for sending a notification to someone who has purchased something: 1 Notification :: route ( '...

Product Data Privacy

We feel strongly that website owners and businesses should own and protect the data they store about their customers and visitors - including user engagement data.

Laravel MessageBag Public API: all

all($format = null) The all method can be used to retrieve all the messages according to a given $format . The $format is null by default, which will cause the all method to use the format stored within the MessageBag instance (which can be...

Laravel String Helper Function: is

The is helper method will indicate if the given $value matches the given $pattern . If the $value is the $pattern or if the $value matches the $pattern , the method will return true , otherwise it returns false . The signature for the is helper...

Laravel Array Helper Function: array_fetch

The fetch helper function has been deprecated as of Laravel 5.1 in favor of the pluck helper function. Additionally, the An Extended Example of Retrieving Unique Data Using Laravel Helper Functions article from the original publication provides...

Laravel MessageBag Public API: merge

…ed to combine, or merge , the contents of the MessageBag instance with the provided $messages . The $messages can be any valid array or an object instance that implements the Illuminate\Contracts\Support\MessageProvider interface. The merge...

Laravel ViewErrorBag Public API: getBag

…orBag -> put ( ' formErrors ' , $ messageBag ) ; 17 18 // Demonstrate that the object returned by the getBag 19 // method is the same as $messageBag. 20 // 21 // true 22 $ areTheSame = $ messageBag === $ viewErrorBag -> getBag ( ' formErrors ' )...