Showing 10 of 2,044 results.

setFilePath | Blade Documents

Sets the document's file path. Document file paths are optional for most use cases, but can be used by other features such as Workspaces or some validators. Argument Description $path The file path. 1 <?php 2 3 use Stillat \ BladeParser \ Document...

releaseNodesFromDocument | Blade Documents

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...

Laravel Artisan Queue Command: The queue:retry Command

The queue:retry command can be used to attempt to process the specified failed jobs again. The command is versatile in how it accepts the IDs of the jobs to retry. All of the jobs can be retried by supplying all as the only argument: 1 # Retry all...

Rendering "Normal" Search Results | Search Results Tag

…, and only consider the first item in each result's items array: 1 {{ documentation : results index = " docs " paginate = " 5 " as = " results " group_results = " false " }} 2 {{ results }} 3 {{ items . 0 }} 4 < div class = " " > 5 < div class =...

Search Tag Parameters | Search Results Tag

…ined in. Default: results . for string Forces a custom search query, overriding the query parameter. supplement_data boolean When true , all non-indexed content will be made available from the returned entries. paginate number Indicates the...

Laravel MessageBag Public API: has

has($key = null) The has method can be used to determine if messages exist within the MessageBag instance for a given $key . The has method returns true if messages exist for the given $key , and returns false if no messages exist. The following...

Laravel 5 String Helpers: Pluralization and Strings

The plural helper method will attempt to return a plural version of the given $value . It does this through a series of specialized internal functions, that will not be covered in great detail here. This helper method will apply general rules to...

setFallback($fallback) | The Laravel Translator

The setFallback method is used to set the fallback locale that the translator should use. It accepts only one parameter $fallback , which is the fallback locale that should be set. By default, it is set to the value defined for fallback_locale in...