Showing 10 of 2,133 results.

Laravel Artisan Tinker: 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/ ). This command performs the same action as...

removeCompiledFiles | Compiling Workspaces

Attempts to remove all compiled files produced by the workspace. 1 <?php 2 3 use Stillat \ BladeParser \ Workspaces \ Workspace ; 4 5 public function removeCompiledFiles ( ) : Workspace ;

Formatting

The Antlers formatter is an opinionated formatting tool built on top of js-beautify , and remains compatible with most of the default settings provided by Visual Studio Code.

Type | Open Graph Metadata

The type method queues a <meta property="og:type" content="..."> tag. By default it sets the type to website . 1 <?php 2 3 use Stillat \ StatamicSiteEssentials \ Support \ Facades \ Metadata ; 4 5 Metadata :: openGraph ( ) -> type ( ) ; 6 Metadata...

PHP Tag Nodes | Parser Nodes Overview

The parser emits Stillat\BladeParser\Nodes\PhpTagNode instances when it parses traditional PHP tags within a Blade template. Each PhpTagNode node is categorized in one of two ways: PhpOpenTag, : Indicates the PHP tag started with the, <?php, tag.,...

Verbatim Nodes | Parser Nodes Overview

The @verbatim and @endverbatim pair is represented by the Stillat\BladeParser\Nodes\VerbatimNode . This structure type is handled internally within the parser, and the library ignores any improper usage of the @verbatim or @endverbatim directives...

withoutCoreDirectives | The Document Parser

Removes support for all core Blade directives. 1 <?php 2 3 use Stillat \ BladeParser \ Parser \ DocumentParser ; 4 5 public function withoutCoreDirectives ( ) : DocumentParser ;

HTTP Equivalent | General Metadata

The httpEquiv method queues a <meta http-equiv="..." content="..."> tag. 1 <?php 2 3 use Stillat \ StatamicSiteEssentials \ Support \ Facades \ Metadata ; 4 5 Metadata :: general ( ) -> httpEquiv ( ' refresh ' , ' 30 ' ) ;