Generate a banner for your package using Social Image Generator for Open Source packages
This is where your description should go. Limit it to a paragraph or two. Consider adding a small example.
Resource | Page | Cluster | Migration | Model | Config | View | Localization |
---|---|---|---|---|---|---|---|
✅ | ❌ | ❌ | ✅ | ✅ | ✅ | ❌ | ✅ |
You can install the package via composer:
composer require :vendor_slug/:package_slug
You can publish and run the migrations with:
php artisan vendor:publish --tag=":package_slug-migrations"
php artisan migrate
You can publish the config file with:
php artisan vendor:publish --tag=":package_slug-config"
Optionally, you can publish the translations using
php artisan vendor:publish --tag=":package_slug-translations"
This is the contents of the published config file:
return [
];
The package provides a resource page that allows you to view XXXXXXX in your Filament admin panel.
To use the resource page provided by this package, you need to register it in your Panel Provider first.
namespace App\Providers\Filament;
use VendorName\Skeleton\SkeletonPlugin;
class AdminPanelProvider extends PanelProvider
{
public function panel(Panel $panel): Panel
{
return $panel
->plugins([
SkeletonPlugin::make()
]);
}
}
composer 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.