Showing 10 of 1,322 results.

Laravel Artisan Closure Based Commands

…eter) will be automatically passed in as the arguments to the callback function. For example, whatever value was supplied for the {$name} input parameter will be passed along as the argument for the callback function's $name parameter. The...

Special Cases for Laravel's Singular Pluralization Feature

Any words, or word endings, in the following table will not be affected by the singular method. This is either because the resulting word is already singular, or because there is no inflection available. Word endings are denoted by the prefix * :...

The Language | How Does PHP Work With The Web Server And Browser?

PHP is an interpreted language. This means that you will write code statements (lines of code) and when a page is requested, the PHP interpreter will load your PHP code, parse it and then execute it. This differs from other languages, such as Java...

A Guidance Engine | Thoughts on a "Guidance Engine"

A lot of people probably though of search engines at the end of that last section. After all, that is what search engines are supposed to do: expose content from around the web. However, I find search engines distracting. For one thing, you may...

Laravel 5 Facades

…me component already registered in the service container. Facades are typically used to provide a simpler interface to an complex underlying subsystem. While some facades provide "shortcut" methods, most of Laravel's facades act like proxies by...

2. Basic Permissions. | License

All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The...

Custom Document and Query Transformers

…during the indexing process, and query transformers are applied to user search queries at search time.Document transformers are applied to each index entry during the indexing process. Document transformers should add a string to the index...

Laravel 5: Conditionally Throwing Exceptions With throw_unless

The throw_unless helper function is the logical counterpart to the throw_if helper function. If the provided $boolean value evaluates to false , a new instance of the provided exception will be created and thrown. Any parameters specified will be...

Filter Search