1- <!--  -->
1+ <!--  -->
22
33# Filament RecycleBin for Laravel Models
44
5- [ ![ Latest Version on Packagist] ( https://img.shields.io/packagist/v/mango/filament-revive.svg?style=flat-square )] ( https://packagist.org/packages/mangodev /filament-revive )
5+ [ ![ Latest Version on Packagist] ( https://img.shields.io/packagist/v/mango/filament-revive.svg?style=flat-square )] ( https://packagist.org/packages/promethys /filament-revive )
66[ ![ GitHub Tests Action Status] ( https://img.shields.io/github/actions/workflow/status/mango/filament-revive/run-tests.yml?branch=main&label=tests&style=flat-square )] ( https://github.com/mango/filament-revive/actions?query=workflow%3Arun-tests+branch%3Amain )
77[ ![ GitHub Code Style Action Status] ( https://img.shields.io/github/actions/workflow/status/mango/filament-revive/fix-php-code-styling.yml?branch=main&label=code%20style&style=flat-square )] ( https://github.com/mango/filament-revive/actions?query=workflow%3A"Fix+PHP+code+styling"+branch%3Amain )
8- [ ![ Total Downloads] ( https://img.shields.io/packagist/dt/mango/filament-revive.svg?style=flat-square )] ( https://packagist.org/packages/mangodev /filament-revive )
8+ [ ![ Total Downloads] ( https://img.shields.io/packagist/dt/mango/filament-revive.svg?style=flat-square )] ( https://packagist.org/packages/promethys /filament-revive )
99
1010** Filament Revive** is a plugin for [ Filament] ( https://filamentphp.com ) that brings a central ** Recycle Bin** to your application. It lets you restore or permanently delete soft-deleted Eloquent models in just a few clicks.
1111
1212This plugin is especially useful for SaaS applications, admin dashboards, or any multi-user platform where recovering accidentally deleted data is important.
1313
14- ![ Preview Screenshot] ( https://github.com/MangoDevMG /filament-revive/tree/main/resources/imgs/preview.png )
15- <!--  -->
14+ ![ Preview Screenshot] ( https://github.com/Promethys /filament-revive/tree/main/resources/imgs/preview.png )
15+ <!--  -->
1616
1717---
1818
@@ -30,7 +30,7 @@ This plugin is especially useful for SaaS applications, admin dashboards, or any
3030Install the package via Composer:
3131
3232``` bash
33- composer require mangodev /filament-revive
33+ composer require promethys /filament-revive
3434php artisan filament-revive:install
3535```
3636
@@ -48,7 +48,7 @@ php artisan migrate
4848Register the plugin in your panel:
4949
5050``` php
51- use MangoDev \FilamentRevive\FilamentRevivePlugin;
51+ use Promethys \FilamentRevive\FilamentRevivePlugin;
5252
5353$panel->plugins([
5454 FilamentRevivePlugin::make()
@@ -58,7 +58,7 @@ $panel->plugins([
5858You can also customize the plugin using fluent configuration:
5959
6060``` php
61- use MangoDev \FilamentRevive\FilamentRevivePlugin;
61+ use Promethys \FilamentRevive\FilamentRevivePlugin;
6262
6363$panel->plugins([
6464 FilamentRevivePlugin::make()
@@ -79,7 +79,7 @@ $panel->plugins([
7979``` php
8080namespace App\MyCoolApp\Custom\Models;
8181
82- use MangoDev \FilamentRevive\Traits\Recyclable;
82+ use Promethys \FilamentRevive\Traits\Recyclable;
8383use Vendor\Package\Models\Foo as BaseFoo;
8484
8585class Foo extends BaseFoo
@@ -98,7 +98,7 @@ From there, users can restore deleted data or permanently remove it.
9898### 1. Add the ` Recyclable ` trait to any soft-deletable model
9999
100100``` php
101- use MangoDev \FilamentRevive\Concerns\Recyclable;
101+ use Promethys \FilamentRevive\Concerns\Recyclable;
102102
103103class Post extends Model
104104{
@@ -128,7 +128,7 @@ You don’t have to register the plugin in your panel to use the table.
128128Instead, you can render the Livewire component directly in a Blade view:
129129
130130``` php
131- @livewire(\MangoDev \FilamentRevive\Tables\RecycleBin::class)
131+ @livewire(\Promethys \FilamentRevive\Tables\RecycleBin::class)
132132```
133133
134134This is ideal if:
@@ -151,7 +151,7 @@ See [CONTRIBUTING](.github/CONTRIBUTING.md) for guidelines.
151151
152152## Credits
153153
154- - [ Ilainiriko Tambaza] ( https://github.com/MangoDevMG )
154+ - [ Ilainiriko Tambaza] ( https://github.com/Promethys )
155155- [ mintellity/laravel-recycle-bin] ( https://github.com/mintellity/laravel-recycle-bin ) — inspiration for this package
156156- [ All Contributors] ( ../../contributors )
157157
0 commit comments