Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Filament | 6,868 | 3 hours ago | 14 | mit | PHP | |||||
Admin panel, form builder and table builder for Laravel. Built with the TALL stack. Designed for humans. | ||||||||||
Migrations Generator | 3,310 | 547 | 49 | 4 months ago | 10 | September 19, 2017 | 83 | mit | PHP | |
Laravel Migrations Generator: Automatically generate your migrations from an existing database schema. | ||||||||||
Iseed | 2,562 | 365 | 46 | 14 days ago | 15 | September 10, 2020 | 75 | bsd-2-clause | PHP | |
Laravel Inverse Seed Generator | ||||||||||
Laravel 5 Generators Extended | 2,431 | 1,683 | 91 | 2 months ago | 16 | September 10, 2020 | 27 | mit | PHP | |
This package extends the core file generators that are included with Laravel 5 | ||||||||||
Laravel Migrations Generator | 1,757 | 5 | 4 days ago | 28 | July 03, 2022 | 2 | mit | PHP | ||
Laravel Migrations Generator: Automatically generate your migrations from an existing database schema. | ||||||||||
Laravel Livewire Tables | 1,394 | 3 | 2 days ago | 67 | May 03, 2022 | 29 | mit | PHP | ||
A dynamic table component for Laravel Livewire | ||||||||||
Eloquent Power Joins | 1,108 | a day ago | 29 | April 06, 2022 | 8 | mit | PHP | |||
The Laravel magic you know, now applied to joins. | ||||||||||
Livewire Datatables | 1,085 | 1 | 6 days ago | 38 | April 04, 2022 | 164 | mit | PHP | ||
Advanced datatables using Laravel, Livewire, Tailwind CSS and Alpine JS | ||||||||||
Sequel Pro Laravel Export | 929 | 8 months ago | 2 | mit | PHP | |||||
A Sequel Pro / Sequel Ace bundle to generate Laravel migration files from existing tables. | ||||||||||
Laravel Model Settings | 641 | 2 | 1 | 2 months ago | 36 | November 12, 2021 | 4 | mit | PHP | |
Model Settings for your Laravel app |
Admin panel, form builder and table builder for Laravel. Built with the TALL stack. Designed for humans.
composer require filament/filament
composer require filament/forms
composer require filament/tables
composer require filament/notifications
composer require filament/spatie-laravel-media-library-plugin
composer require filament/spatie-laravel-settings-plugin
composer require filament/spatie-laravel-tags-plugin
composer require filament/spatie-laravel-translatable-plugin
If you want to contribute to Filament packages, you may want to test it in a real Laravel project:
/filament
directory, create a branch for your fix, e.g. fix/error-message
.Install the packages in your app's composer.json
:
{
// ...
"require": {
"filament/filament": "*",
},
"minimum-stability": "dev",
"repositories": [
{
"type": "path",
"url": "filament/packages/*"
}
],
// ...
}
Now, run composer update
.
Set up a Laravel app, and install the admin panel.
Now, if you want to check for missing Spanish translations, run:
php artisan filament:check-translations es
This will let you know which translations are missing for this locale. You can make a PR with the changes to this repository.
If you've published the translations into your app and you'd like to check those instead, try:
php artisan filament:check-translations es --source=app
If you spot a bug, please submit a detailed issue, and wait for assistance.
If you have a question or feature request, please start a new discussion. We also have a Discord community. For quick help, ask questions in the appropriate channel.
If you discover a vulnerability, please review our security policy.