Showing 10 of 2,142 results.

What I'm Working on Now | Laracon, Blade and What's Next

Currently, my core focus with Forte is on the lexer and parser. Forte's parser will differ from my existing Blade Parser library, which excels at extracting Blade from templates, in that it will not only parse Blade but also all of the HTML ,...

Laravel Companion: A Guide to Helpers, Collections And More

Whether you're new to Laravel or a seasoned developer, Laravel Companion is your go-to guide for unlocking the full potential of the framework. Packed with real-world examples and concise explanations, this book dives deep into Laravel's helper...

Laravel Collection Public API: chunk

chunk($size, $preserveKeys = false) The chunk method is useful when working with large collections in that it allows developers to create smaller collections to work with. The chunk method defines two parameters: $size , which is used to control...

Documentation Search

Tidal uses the Documentation Search addon to index, manage, and search your documentation site's entries. Documentation Search provides a custom Statamic search provider, focused at making it easier to index documentation-heavy websites where each...

Laravel Artisan Database Command: The db:seed Command

The db:seed command is used to add records to a database automatically using a Seeder ( Illuminate\Database\Seeder ) class to generate or provide the records. The db:seed defines three options: class , database and force . The class option can be...

Resolving Variable Values | Introduction & Installation

We can resolve variables from contextual data, which is supplied as the second argument to the attributes function. When specifying variable names, we simply prefix them with the $ symbol: 1 <?php 2 3 use function Stillat \...