Showing 7 of 1,216 result(s)

/blog/2016/12/01/the-laravel-application-console-kernel

Each application contains a console kernel. The console kernel is defined in the app/Console/Kernel.php (this will be referred to as the application console kernel) file. The kernel class that exists in that file extends Laravel's console kernel...

/blog/2017/11/30/laravel-string-pattern-matching-laravel-55-string-helper-method-is

The is helper method will indicate if the given $value matches the given $pattern . If the $value is the $pattern or if the $value matches the $pattern , the method will return true , otherwise it returns false .

/blog/2016/11/30/creating-a-hashing-manager-for-our-custom-laravel-hashing-implementations

To make it easier to easily work with all the different hashing implementations that we have created in previous articles, we will create a new class called HashManager in some directory that is accessible with the namespace...

/blog/2016/11/21/laravel-macros-an-easy-way-to-extend-laravel-components#content-important-notes-on-call-and-callstatic

…commodating the macro features in a class that requires one, or both of the above magic methods is quite simple: The above example is actually utilized within the framework itself with the implementation of \Illuminate\Cache\Repository . The...

/blog/2016/11/29/an-introduction-to-laravel-view-error-bags

…nce to the default MessageBag instance. Any public method that can be called on a MessageBag instance can be called on the default MessageBag instance without having to do any extra work: The following articles detail each of the public API...

/blog/2018/04/21/laravel-5-facades

Facades are a convenient way to access Laravel's components. Each facade is bound to some component already registered in the service container. Facades are typically used to provide a simpler interface to an complex underlying subsystem. While...

/blog/2016/11/20/laravel-application-helper-abort_unless

abort_unless($boolean, $code, $message = '', array $headers) The abort_unless helper is the logical opposite of the abort_if helper function. Like abort (discussed in the Laravel Application Function: abort article) and abort_if (discussed in the...

Some absolutely amazing
people

The following amazing people help support this site and my open source projects ♥️
If you're interesting in supporting my work and want to show up on this list, check out my GitHub Sponsors Profile.