Search

Showing 7 of 2,041 result(s)

/antlers-toolbox/template-ide-hints#content-specifying-the-blueprints

You may specify which blueprint(s) apply to any template file by using the @blueprint directive: 1 {{# 2 @name The template name. 3 @desc A human-friendly description for your awesome template. 4 @blueprint blueprintName 5 #}} 6   7 The rest of...

/blade-parser/v1/documents#content-releasenodesfromdocument

Removes the document instance from all attached nodes. Calling this method will remove the document instance from all nodes that currently belong to this document. This can be useful if you simply want lightweight instances and do not necessarily...

/blade-parser/v1/validation#content-getvalidatorcount

Returns the total number of validator instances registered with BladeValidator instance. 1 <?php 2   3 public function getValidatorCount () : int ;

/blog/2016/11/29/laravel-messagebag-public-api-count

The count method is a straightforward method and simply returns the total number of items in the collection. The count method returns an integer.This article is the start of a mini-series about Laravel's ErrorMessageBag component. Click through...

/blog/2016/11/29/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.This article is the start of a mini-series about Laravel's ErrorMessageBag...

/blog/2016/12/01/alternatives-to-laravel-artisan-command-signatures#content-array-parameters

The signature that will be implemented using the getOptions method is: test:command {argumentName=*} The corresponding getArguments implementation would be:

/blog/2017/12/06/laravel-5-string-helpers-replacing-the-first-occurrence-of-a-value#content-example-use

The following examples highlight the basic usage of the replaceFirst method. The results of the method call will appear above the call as a comment.