Showing 10 of 1,322 results.

Laravel Artisan Database Command: The db:seed Command

…atabase option is used to specify which database connection is used when inserting the records. By default this option is set to value held in the database.default configuration entry (which is set to mysql by default). The force option is used...

Laravel 5: Retrieving Environment Variables With env

…) 15 16 TEST_FALSE1=false 17 TEST_FALSE2=(false) 18 19 TEST_NULL1=null 20 TEST_NULL2=(null) 21 22 TEST_EMPTY1=empty 23 TEST_EMPTY2=(empty) The returned value will appear above the function call as a comment (the actual values returned will likely...

Sorting Comment Threads

Meerkat 2 has tossed away the sorting system from previous versions of Meerkat and replaced it with a new, more powerful system. The syntax for sorting comments is different from previous versions, but the capabilities it unlocks are worth it. By...

Search Tag Parameters | Search Results Tag

…imits the total number of results to search. offset integer Skips the specified number of search results. as string Allows you to rename the array the search results are contained in. Default: results . for string Forces a custom search query,...

Laravel Collection Public API: filter

…evaluates to false will be removed from the final collection. Supplying a $callback allows developers to provide their own truth tests to determine if a value should be included in the final collection that is returned. The filter method returns...

Laravel Collection Public API: transform

transform(callable $callback) The transform is identical to the map method, but instead of returning a new Collection instance, the transform method will modify the original collection instance. The transform method will return a reference to the...

Filter Search