Essentials provide better defaults for your Laravel applications, including strict models, automatically eagerly loaded relationships, immutable dates, and more!
This package is a modified clone of the original work by Nuno Maduro and their contributors.
All credit and recognition belong to the original creator(s).
The purpose of this fork is to:
- Remove unused functionalities that are not required in our environment.
- Ensure the package remains available and versioned within our company repository for long-term stability and security, regardless of potential future changes or removal from the original source.
- Apply a namespace change strictly to reflect the internal usage and maintenance of this version, without implying ownership of the original work.
This repository is not an official distribution of the original package. We encourage developers to use and support the official package whenever possible.
Requires PHP 8.4+, Laravel 12+.
Note: This package modifies the default behavior of Laravel. It is recommended to use it in new projects or when you are comfortable with the changes it introduces.
⚡️ Get started by requiring the package using Composer:
composer require fleet-tower/essentials
All features are optional and configurable in config/essentials.php
.
You may publish the configuration file with:
php artisan vendor:publish --tag=essentials-config
- Strict Models
- Auto Eager Loading
- Optional Unguarded Models
- Immutable Dates
- Force HTTPS
- Safe Console
- Asset Prefetching
- Prevent Stray Requests
- Fake Sleep
- Artisan Commands
Improves how Eloquent handles undefined attributes, lazy loading, and invalid assignments.
- Accessing a missing attribute throws an error.
- Lazy loading is blocked unless explicitly allowed.
- Setting undefined attributes throws instead of failing silently.
Why: Avoids subtle bugs and makes model behavior easier to reason about.
Automatically eager loads relationships defined in the model's $with
property.
Why: Reduces N+1 query issues and improves performance without needing with()
everywhere.
Disables Laravel's mass assignment protection globally (opt-in).
Why: Useful in trusted or local environments where you want to skip defining $fillable
.
Uses CarbonImmutable
instead of mutable date objects across your app.
Why: Prevents unexpected date mutations and improves predictability.
Forces all generated URLs to use https://
.
Why: Ensures all traffic uses secure connections by default.
Blocks potentially destructive Artisan commands in production (e.g., migrate:fresh
).
Why: Prevents accidental data loss and adds a safety net in sensitive environments.
Configures Laravel Vite to preload assets more aggressively.
Why: Improves front-end load times and user experience.
Configures Laravel Http Facade to prevent stray requests.
Why: Ensure every HTTP calls during tests have been explicitly faked.
Configures Laravel Sleep Facade to be faked.
Why: Avoid unexpected sleep during testing cases.
Quickly generates action classes in your Laravel application:
php artisan make:action CreateUserAction
This creates a clean action class at app/Actions/CreateUserAction.php
:
<?php
declare(strict_types=1);
namespace App\Actions;
final readonly class CreateUserAction
{
/**
* Execute the action.
*/
public function handle(): void
{
DB::transaction(function (): void {
//
});
}
}
Actions help organize business logic in dedicated classes, promoting single responsibility and cleaner controllers.
All features are configurable through the essentials.php
config file. By default, most features are enabled, but you can disable any feature by setting its configuration value to false
:
// config/essentials.php
return [
FleetTower\Essentials\Configurables\ShouldBeStrict::class => true,
FleetTower\Essentials\Configurables\Unguard::class => false,
// other configurables...
];
You may also publish the stubs used by this package:
php artisan vendor:publish --tag=essentials-stubs
- Better defaults before each test case
- Better Pint configuration by default
- General cleanup of the skeleton
- Additional configurables for common Laravel patterns
Essentials was created by Nuno Maduro under the MIT license.