sbkinfo / cleanses
Trasher for laravel
Installs: 49
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/sbkinfo/cleanses
This package is not auto-updated.
Last update: 2025-10-12 10:28:37 UTC
README
Cleanses (database inverse seeds) for laravel framework.
How to install
Run this command in terminal
composer require "sbkinfo/cleanses"
Include ServiceProvider in config/app.php
'providers' => [ # Other service providers... SBKInfo\Cleanses\Providers\CleanserProvider::class ]
To create a Cleanser class, run the following command
php artisan make:cleanser Test
To run a Cleanser class, run the following command
php artisan db:cleanser Test