Premium
PHP Snippets.

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

PHP

Authenticating with OAuth 2.0 Client Credentials Grant

Securely access external APIs from your server using the OAuth 2.0 Client Credentials flow for server-to-server authentication, ideal for background services.

View Snippet →
PHP

Client-Side Leaky Bucket Rate Limiter for API Calls

Implement a simple client-side leaky bucket rate limiter in PHP to control your outbound API request frequency and avoid exceeding external API limits.

View Snippet →
PHP

Applying Global Scopes for Universal Query Constraints

Discover how to implement global scopes in Laravel Eloquent to automatically apply query constraints across all queries for a given model, enhancing code consistency.

View Snippet →
PHP

Implementing and Querying Soft Deleted Models

Learn to enable soft deletes in Laravel Eloquent models, allowing records to be 'deleted' without being permanently removed from the database, and how to query and restore them.

View Snippet →
PHP

Customizing Pivot Models for Many-to-Many Relationships

Master the creation and use of custom pivot models in Laravel Eloquent to add custom methods, attributes, and logic to your intermediate many-to-many table records.

View Snippet →
PHP

Aggregating Related Data with `withSum`, `withAvg`, `withMax`

Efficiently aggregate data from related models using Eloquent's `withSum`, `withAvg`, and `withMax` methods, retrieving calculated values without loading entire relationships.

View Snippet →
PHP

Efficient Eager Loading with Constraints & Specific Columns

Optimize Laravel Eloquent queries by eagerly loading related models with specific conditions and only fetching necessary columns to reduce memory usage.

View Snippet →
PHP

Implementing Reusable Local Scopes in Eloquent

Learn to create local scopes in Laravel Eloquent models to define common sets of query constraints, enhancing code reusability and readability.

View Snippet →
PHP

Filtering Models Based on Related Model Existence

Use Laravel Eloquent's `has` and `whereHas` methods to filter parent models based on the existence of related models or specific conditions within those relationships.

View Snippet →
PHP

Transforming Model Attributes with Accessors & Mutators

Implement Laravel Eloquent accessors to format or modify attribute values when retrieved, and mutators to transform values before they are saved to the database.

View Snippet →
PHP

Counting Related Models Efficiently with `withCount`

Learn to use Laravel Eloquent's `withCount` method to efficiently retrieve the count of related models without loading all relationships, optimizing performance.

View Snippet →
PHP

Flatten a Multi-dimensional PHP Array

Learn how to convert a nested PHP array into a single-level array, useful for processing data structures and simplifying iterations over all elements.

View Snippet →