Showing 10 of 2,055 results.

Laravel Artisan Tinker: The down Command

The down command is used to put the application into maintenance mode. It does this by creating a file named down in the framework storage path (which by default is storage/framework/ ). This command performs the same action as the php artisan...

Basic Filtering

Meerkat filters allow you to quickly locate the precise data you need to implement your front end designs.

registerCustomComponentTag | The Document Parser

Registers a single custom component tag name. Argument Description $tagName The component tag name. 1 <?php 2 3 use Stillat \ BladeParser \ Parser \ DocumentParser ; 4 5 public function registerCustomComponentTag ( 6 string $ tagName 7 ) :...

registerCustomComponentTags | The Document Parser

Registers multiple custom component tag names. Argument Description $tagNames The tag names. 1 <?php 2 3 use Stillat \ BladeParser \ Parser \ DocumentParser ; 4 5 public function registerCustomComponentTags ( 6 array $ tagNames 7 ) : DocumentParser ;