Showing 10 of 2,044 results.

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 ;

getAllSwitchStatements | Workspaces

Returns all the workspaces' switch statements. This method automatically performs structural analysis. 1 <?php 2 3 use Illuminate \ Support \ Collection ; 4 5 public function getAllSwitchStatements ( ) : Collection ;

getAllConditions | Workspaces

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

getAllForElse | Workspaces

Returns all the workspace for-else blocks. This method automatically performs structural analysis. 1 <?php 2 3 use Illuminate \ Support \ Collection ; 4 5 public function getAllForElse ( ) : Collection ;

extractText | Text Extraction

Extracts the text from the document. This method will extract the literal, non-Blade text from the document. By default, this method will reverse Blade escape sequences in the produced text. This behavior can be changed by supplying a "falsey"...

Laravel Miscellaneous Helper Function: value

value($value) The value function will return the default value of the supplied $value . Although this sounds redundant, if the supplied $value is an instance of the Closure class, the function will be executed and the value will be returned. If...

Open Graph 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 openGraph method:...

Aliasing Other Classes | Laravel 5 Facades

Classes, other than facades, can be added to the aliases configuration entry. This will cause them to be available under whatever name was provided, and in the global namespace. Although this can be convenient and useful thing to do, other options...