Showing 10 of 2,044 results.

Rebuilding Stillat.com

This is a blog post that I thought I was going to write about ten months ago; this is captured in the following public post I made on Twitter: Well that's almost embarrassing! Even with the fact that it took me about two months to start working on...

Laravel Artisan General Command: The name Command

…used to set the application namespace. It accepts only one argument, the new name of the application namespace. In a new Laravel installation, the application namespace is set to App , as can be seen in the following code snippet (both PHP code...

Laravel 5: Getting Specific Messages With get

The get method can be used to retrieve all the messages for a given $key with the specified $format . The $format is null by default, which will cause the get method to use the format stored within the MessageBag instance (which can be retrieved...

Available Methods | Querying Document Nodes

The following methods are also available on all NodeCollection instances, in addition to the following node types: Stillat\BladeParser\Nodes\Components\ComponentNode, Stillat\BladeParser\Nodes\DirectiveNode

findNodePattern | Querying Document Nodes

…pattern. 1 <?php 2 3 use Illuminate \ Support \ Collection ; 4 5 public function findNodePattern ( 6 array $ pattern 7 ) : Collection ; Example Use 1 <?php 2 3 use Stillat \ BladeParser \ Document \ Document ; 4 use Stillat \ BladeParser \ Nodes...

Encrypting and Decrypting Within Laravel Applications

…ion scheme, right out of the box. Laravel also automatically signs all encrypted values with a message authentication code (MAC) so that any modifications to the encrypted data can be detected. Laravel internally accomplishes this through various...