Showing 10 of 2,133 results.

Laravel Artisan General Command: The up Command

The up command is used to take an application out of maintenance mode. It does this by removing a file named down from the application's framework storage directory (by default this is storage/framework/ ). The following demonstrates the usage of...

Literal Nodes | Parser Nodes Overview

Instances of Stillat\BladeParser\Nodes\LiteralNode are created to represent the non-Blade content contained within an input document. Literal nodes maintain helpful information, such as the original trailing and leading whitespace discovered while...

isFatal | Parser Errors

Tests if the current error is considered a "fatal" error. Fatal errors are those that are likely to cause issues when compiling the final PHP for a given template. Some parser generated errors are "warnings", and will not be reported as fatal...

Updating a Comment | Managing Comments

Comments may be updated from the Control Panel by selected the "Edit" option below the comment's content. An inline comment editor will appear, allowing you to update the comment's content.

Laravel 5: Setting Array or Object Values With data_set

The data_set helper function can be used to set the value of an item in an array or an object property using dot notation. It accepts a reference to a $target array or object; the $key (array key or object property name) of the data to set and the...

getAttributes() | Laravel Fluent Part Two: The Public API

The getAttributes method simply returns an array containing all key/value pairs, representing the underlying data contained within the Fluent instance. After the following code is executed: 1 <?php 2 3 $ fluent = new Fluent ( $ testObject ) ; 4 5...