Search

Showing 7 of 1,697 result(s)

/blog/2014/12/13/semantic-ui-paginator-for-laravel-4#content-step-14-more-methods

Now that we have the first three methods implemented, we need to finish a few more: the getDots and render method. The getDots method is responsible for rendering the ellipsis when there is a lot of links. For the Semantic paginator, we are going...

/blog/2016/11/21/laravel-facades-part-two-using-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/11/30/laravel-implementing-a-md5-hasher

In this article we will create an implementation of Illuminate\Contracts\Hashing\Hasher using PHP's crypt function and the CRYPT_MD5 hashing function. Like in the previous sections, we will examine each method before looking at the full...

/blog/2016/12/07/customizing-the-laravel-artisan-application

While it is simple to create custom Artisan commands there are other times where it may be necessary to customize the core console application further. The Artisan console application ( Illuminate\Console\Application ) extends Symfony's console...

/blog/2018/04/14/laravel-5-notifying-server-side-clients-of-events-with-broadcast

The broadcast helper function is similar in function to the event helper function in that, if an event implements the "Illuminate\Contracts\Broadcasting\ShouldBroadcast" interface, it will dispatch the event to all server-side listeners and notify...

/blog/2021/02/15/implementing-a-customer-dsl-parser-in-php#content-parsing-multiple-input-filters

After the previous section, our parser can now extract a single input filter from the input string. Let's update the input.txt with the following value: where(name, =, value)|is:published(true) We will add a new condition to our parser that checks...

/blog/2022/07/18/antlers-and-blade-formatters-behind-the-scenes#content-the-challenge

Antlers and Blade can be challenging languages to format and produce acceptable results. Let us take a look at this unformatted Blade example: compared to its formatted version: In that example we have the following languages mixed together: HTML,...