leko-team/laravel-active

Ready-made solution for active an entity with Eloquent models

1.0.0 2023-10-23 15:29 UTC

This package is auto-updated.

Last update: 2024-09-23 17:49:42 UTC


README

Latest Version

This package can activate entity with Eloquent models. It provides a simple API to work with.

Installation

The library can be installed via Composer:

composer require leko-team/laravel-active

Configuration

To be able active eloquent entities you need:

$table->boolean('is_active')->default(false)->index()->comment('Признак активности'); $table->timestamp('start_at')->nullable()->index()->comment('Временная метка начала активности'); $table->timestamp('end_at')->nullable()->index()->comment('Временная метка окончания активности');

  • Add migration with columns: is_active, start_at, end_at
  • Or assign: static::IS_ACTIVE, static::START_AT, static::END_AT constant with the name of the column you want to use.
php artisan make:migration add_active_columns_in_`your-table`_table
    public function up(): void
    {
        Schema::table('your-table', function (Blueprint $table) {
            $table->boolean('is_active')->default(true)->index();
            $table->timestamp('start_at')->nullable()->index();
            $table->timestamp('end_at')->nullable()->index();
        });
    }

    public function down(): void
    {
        Schema::table('your-table', function (Blueprint $table) {
            $table->dropColumn('end_at');
            $table->dropColumn('start_at');
            $table->dropColumn('is_active');
        });
    }

If you have existing records in your table you maybe want to update them.

  • Add trait ActivityTrait to your model.
use ActivityTrait;

Examples

Base

To activate entity:

$review = Review::first();
$review->activate();

To deactivate entity:

$review = Review::first();
$review->deactivate();

Scopes

By default from active entity return only active records with next condition: Entity is true and start_at IS NULL OR <= then current timestamp ('2023-10-23 13:52:37') and end_at IS NULL OR end_at >= then current timestamp ('2023-10-23 13:52:37'). You can change this by applying scope to your Eloquent model.

  • withInactive
$review = Review::withInactive()->get();

Returns all records.

Credits

License

The MIT License (MIT). Please see License File for more information.