Premium
PHP Snippets.

Curated list of production-ready PHP scripts and coding solutions.

PHP

Consume a Paginated REST API Efficiently with Guzzle in PHP

Master fetching and processing paginated data from RESTful APIs in PHP using the Guzzle HTTP client, including iterating through multiple pages.

View Snippet →
PHP

Customizing Pivot Models for Many-to-Many Eloquent Relationships

Extend Eloquent's many-to-many relationships by defining a custom intermediate model, allowing you to add methods and accessors to your pivot table data.

View Snippet →
PHP

Filtering by Related Columns with Eloquent `whereRelation`

Efficiently filter parent models based on direct conditions applied to related model columns using Laravel Eloquent's `whereRelation` method for optimized queries.

View Snippet →
PHP

Performing Aggregates on Eloquent Relationships (e.g., `withCount`, `withSum`)

Learn to efficiently retrieve aggregate values like counts, sums, averages, min, or max from related Eloquent models directly within your main query.

View Snippet →
PHP

Finding Models Without Related Records Using `whereDoesntHave`

Efficiently identify and retrieve parent models that do not have any associated records for a specified relationship using Eloquent's `whereDoesntHave` method.

View Snippet →
PHP

Customizing Eloquent Model Primary Keys, Timestamps, and Table Names

Discover how to override default conventions for primary keys, timestamps, and table names in Laravel Eloquent models for greater database flexibility.

View Snippet →
PHP

Filtering Models by Related Records Using Eloquent whereHas

Efficiently retrieve parent models based on conditions applied to their related records using Eloquent's powerful whereHas method to refine your queries.

View Snippet →
PHP

Automating Tasks with Eloquent Model Observers

Learn to use Eloquent Observers to perform actions automatically when model events like creating, updating, or deleting occur, centralizing business logic.

View Snippet →
PHP

Creating Reusable Query Conditions with Eloquent Local Scopes

Define local query scopes in your Eloquent models to encapsulate common query logic, making your database queries cleaner and more maintainable.

View Snippet →
PHP

Secure Mass Assignment with Eloquent Fillable & Guarded

Protect your Laravel Eloquent models from mass assignment vulnerabilities by explicitly defining which attributes are allowed to be mass-assigned using $fillable or $guarded.

View Snippet →
PHP

Apply Global Query Filters with Eloquent Global Scopes

Implement application-wide query constraints on your Laravel Eloquent models using global scopes, ensuring consistent data filtering across all queries automatically.

View Snippet →
PHP

Bulk Insert Multiple Records Efficiently with Eloquent

Perform high-performance bulk insertions of multiple records into your database using Laravel Eloquent's `insert()` method, significantly faster than looping `create()` calls.

View Snippet →