Showing 10 of 2,133 results.

Validating Workspaces

Validating workspaces works the same as validating individual documents. The difference is that all the configured nodes and document validators will be executed against all documents within the workspace. 1 <?php 2 use Stillat \ BladeParser \...

Removing Comments | Managing Comments

Comments may be deleted from the Control Panel by selecting the "Delete" option below the comment's content. There are a few things to remember when removing a comment: Addons may elect to "soft-delete" a comment. This means they won't show up by...

GNU GENERAL PUBLIC LICENSE | License

Version 3, 29 June 2007 Copyright © 2007 Free Software Foundation, Inc. < https://fsf.org/ > Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed.

Laravel Artisan View Command: The view:clear Command

The view:clear command is used to quickly remove all of the compiled view files from the application. This is done by removing all the files from the configured view storage directory (by default this is the storage/framework/views/ directory)....

The is:deleted Filter | The "is" Filters

The is:deleted filter allows you to filter comments based on whether or not a comment has been soft deleted. It accepts a boolean value, or the wildcard ( * ) value. The following example returns all comments that were soft deleted: 1 {{ meerkat :...

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...

General Metadata

The general metadata builder provides various methods to add common metadata information to your site, such as keywords, titles, and descriptions. To access the general metadata builder using the Metadata facade, we can call the general method: 1...

Laravel Artisan Cache Command: The cache:clear Command

The cache:clear command can be used to clear the applications cache files. The command defines an optional store parameter which can be used to change which cache store is cleared. By default the store parameter will be set to whatever value is...

Directive Argument Spacing | The Validate Command

Class : DirectiveArgumentSpacingValidator The directive argument spacing validator will check that all directives containing arguments contain a certain amount of spaces between the directive name and its arguments. The following template: 1 @if (...

Recursive Includes Validator | The Validate Command

Class : RecursiveIncludeValidator The recursive includes validator will attempt to detect possible recursive @include directives. The following template (with filename test.blade.php ): 1 @include ( ' test ' ) produces the following validation...