Search

Showing 7 of 1,216 result(s)

/blog/2016/11/30/laravel-hashing-one-way-encryption

…original message cannot be retrieved from the resulting hash. Hashing is accomplished through the use of a hash function. A hash function generally accepts some input, called a message and transforms the message to produce a given output, a...

/blog/2018/04/21/laravel-5-view-error-bags

…methods that do not exist explicitly on the ViewErrorBag instance 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...

/blog/2016/11/21/laravel-facades-part-three-creating-custom-facades

This article is part of a four part series all about Laravel facades. Each of the parts are listed below: Laravel Facades Part One: An Introduction to Facades, Laravel Facades Part Two: Using Facades, ., Laravel Facades Part Three: Creating Custom...

/blog/2016/12/07/laravel-artisan-closure-based-commands

Laravel 5.3 introduced a new shorthand syntax to make writing simple Artisan commands much simpler. The console kernel exposes a command($signature, Closure $callback) method. The $signature parameter accepts a command signature string , which...

/blog/2016/12/07/laravel-task-scheduler-an-introduction

Laravel provides a manageable system for scheduling tasks and commands out of the box, the command scheduler. It is a replacement for systems like cron or Windows Task Scheduler in the sense that the actual scheduling of commands is done using...

/blog/2017/07/22/announcement-all-of-the-laravel-articles-are-free

Last year I took on an ambitious project titled "Laravel Artisan: An In Depth Coverage of Laravel Features". It was meant to be a comprehensive guide to the Laravel framework. At the point where it became obvious the plug had to be pulled on the...

/blog/2023/09/03/creating-a-hybrid-cache-system-for-statamic#content-experimentation-and-cache-design

In the last section, we explored the relative response times of different Statamic caching strategies and experimented with the response times of short-circuiting both Laravel and Statamic. We also discovered that the response times resulting from...