Showing 10 of 2,055 results.

Laravel MessageBag Public API: getMessageBag

The getMessageBag method returns a reference to the MessageBag instance. It exists to satisfy the requirements of the Illuminate\Contracts\Support\MessageProvider interface. 1 <?php 2 3 use Illuminate \ Support \ MessageBag ; 4 5 // false 6 $...

withPathFormatter | Compiling Workspaces

Sets the PathFormatter implementation used by the workspace. PathFormatter implementations are used to determine what the final output file paths look like. Argument Description $formatter The path formatter. 1 <?php 2 3 use Stillat \ BladeParser...

Generate Images | Artisan Commands

The generate-images Artisan command may be used to generate images for all configured collections. It can be invoked by running the following command from the root of your project: 1 php artisan social-media-image-kit:generate-images This command...

Site Settings

A few properties of your site can be configured by using the "Site Settings" global, directly within the control panel: Site Name, : Controls the title that appears on the site (, important, : make sure to also update your site's, APP_NAME,...

getDocuments | Workspaces

Returns a collection of Document instances. 1 <?php 2 3 use Illuminate \ Support \ Collection ; 4 5 public function getDocuments ( ) : Collection ;

getLiterals | Workspaces

Returns all literal content nodes within the workspace. Returns the source template's content that could not be parsed into a valid Blade construct. If a document contains no Blade code, the parser will return a single instance of LiteralNode . 1...

getDirectives | Workspaces

Returns all directives within the workspace. Returns all directives from a source document. Some directive pairs, such as the @php / @endphp and @verbatim / @endverbatim pairs will not result in an instance of DirectiveNode , as they are handled...

getComponents | Workspaces

Returns all component tags within workspace document. This method will return all component tags within a document, including closing tags and self-closing tags. 1 <?php 2 3 use Stillat \ BladeParser \ Nodes \ NodeCollection ; 4 5 public function...

findComponentsByTagName | Workspaces

Finds all components with the provided tag name. This method will return all component tags that match the provided name, including closing tags. Argument Description $tagName The tag name to filter on. 1 <?php 2 3 use Stillat \ BladeParser \...

getAllStructures | Workspaces

Returns all the workspace structures. This method automatically performs structural analysis on a document. 1 <?php 2 3 use Illuminate \ Support \ Collection ; 4 5 public function getAllStructures ( ) : Collection ;