Search

Showing 7 of 2,041 result(s)

/blog/2017/09/24/image-resources-for-applications-and-blogs

A common problem faced by blog authors, site hobbyist, start-ups, etc. is sourcing high-quality images without breaking the bank. Believe it or not, there are many resources available online that make amazing images available at no cost for both...

/blog/2018/04/14/laravel-5-managing-http-cookies-with-cookie

The cookie function is generally used to create a new instance of the "\Symfony\Component\HttpFoundation\Cookie" class. If the supplied $name is null an implementation of "\Illuminate\Contracts\Cookie\Factory" (which is an instance of...

/blog/2021/02/15/implementing-a-customer-dsl-parser-in-php#content-describing-our-language-input

Before writing any more code, we need to take a moment to understand exactly what it is we are trying to analyze. Let's consider the following example input: where(name, =, 'Alice\'s name')|where(author, =, '\\')|is:published(true) This input...

/blog/2013/10/29/passing-data-to-php-anonymous-functions

PHP version 5.3 introduced a new feature called anonymous functions, or lambda functions. You may have come across them in other languages such as C# or Ruby. They allow for greater flexibility and offer a clean, expressive syntax. Anonymous...

/site-essentials-for-statamic/v1/introduction-installation

Site Essentials for Statamic is a Statamic addon that provides many different features, each targeted at simplifying an aspect of creating Statamic websites. Site Essentials for Statamic ships with the following features out of the box: Favicon...

/blog/2014/07/21/part-one-creating-a-custom-pagination-view-in-laravel

Update You can view the completed part two of this article by visiting Part Two: Creating a Custom Pagination View in Laravel In this post we are going to look at building a custom paginator view in Laravel 4. There are quite a few posts are the...

/blog/2023/09/04/implementing-a-custom-blade-precompiler-for-laravel-volt-and-livewire#content-starting-our-compiler-implementation

For this blog post, our compiler implementation will remain limited in scope and focus on being able to compile the simple counting example from the introduction. Our compiler needs to be able to accomplish the following: Detect and parse our...