Edofre / laravel-softdelete-cleanup by edofre

Console command to cleanup your database from softdeleted models
24
3
2
Package Data
Maintainer Username: edofre
Maintainer Contact: edofre@gmail.com (Edo Freriks)
Package Create Date: 2017-02-02
Package Last Update: 2020-09-04
Language: PHP
License: MIT
Last Refreshed: 2024-04-18 03:03:22
Package Statistics
Total Downloads: 24
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 3
Total Watchers: 2
Total Forks: 0
Total Open Issues: 0

Laravel Softdelete Cleanup

Latest Stable Version Total Downloads Latest Unstable Version License composer.lock Build Status Code Climate Build Status

Installation

The preferred way to install this extension is through composer.

To install, either run

$ php composer.phar require edofre/laravel-softdelete-cleanup

or add

"edofre/laravel-softdelete-cleanup": "V1.2.0"

to the require section of your composer.json file.

Configuration

Add the console command to the $commands array in your /app/Console/Kernel.php

protected $commands = [
        \Edofre\SoftdeleteCleanup\SoftdeleteCleanup::class,
    ];

Executing

The following command will then remove all the trashed items from the User, note that the User model is not in the default namespace.

php artisan db:softdelete-cleanup App\\Models\\User

Tests

Run the tests by executing the following command:

composer test

Feature requests

  • Set the number of days from which the items should be deleted
  • ?