Showing 10 of 2,055 results.

where Comparison Operators | The "where" Filters

The following table lists all of the comparison operators that are supported by the where filter: Operator Description = Lose equality operator; the data types do not need to match. != Lose inequality operator; the data types do not need to match....

The Search Report

…in the search log by running the following command from the root of your project: 1 php artisan search-report:clear-search-term-logs Note: This search-report:clear-search-term-logs command truncates the configured search term log table. Depending...

Navigation Menus

Tidal makes use of a number of navigation menus throughout the site, for various purposes. The following navigation menus are available for customization: Docs, : The main documentation menu. This appears on the left of the page by default, and as...

setThrowExceptionOnUnknownComponentClass | Blade Compiler

Sets whether the compiler will fail when it encounters unknown component classes. Argument Description $doThrow Whether to throw on unknown component classes. 1 <?php 2 3 public function setThrowExceptionOnUnknownComponentClass ( 4 bool $ doThrow...

getFirstError | Blade Compiler

Retrieves the first error. If the error source contains multiple types of errors, such as parser errors and validation errors, all errors will be considered. 1 <?php 2 3 use Stillat \ BladeParser \ Errors \ BladeError ; 4 5 public function...

Example Use | Laravel 5: String Translation Public API

In the following examples, we will look at the various ways we can invoke the get method. We will start with simple translation line retrieval and gradually work through using the remaining parameters.