| Install | |
|---|---|
composer require ofthewildfire/filament-resource-builder |
|
| Latest Version: | v1.0.7 |
| PHP: | ^8.2|^8.3 |
A powerful Filament plugin that allows users to create custom resources dynamically through the GUI. Build complete CRUD interfaces without writing code!
You can install the package via composer:
composer require ofthewildfire/filament-resource-builder
You can publish and run the migrations with:
php artisan vendor:publish --tag="filament-resource-builder-migrations"
php artisan migrate
Add the plugin to your Filament panel in app/Providers/Filament/AdminPanelProvider.php:
use Fuascailtdev\FilamentResourceBuilder\FilamentResourceBuilderPlugin;
public function panel(Panel $panel): Panel
{
return $panel
// ... other configuration
->plugins([
FilamentResourceBuilderPlugin::make(),
]);
}
Creating a "Products" resource with title, price, and description fields will:
products database tablecomposer test
Please see CHANGELOG for more information on what has changed recently.
Please see CONTRIBUTING for details.
Please review our security policy on how to report security vulnerabilities.
The MIT License (MIT). Please see License File for more information.