О нас
Разработчикам
Заметки
Переводчик
Транслитератор
Сравнить текст
Генератор пароля
Ip и информация
Декодировать JSON
Локация
О нас
Разработчикам
Заметки
Переводчик
Транслитератор
Сравнить текст
Генератор пароля
Ip и информация
Декодировать JSON
Локация
Filament Laravel
us.content
Tailwind CSS https://filamentphp.com/docs/3.x/panels/installation https://demo.filamentphp.com https://github.com/filamentphp/demo/tree/main https://blade-ui-kit.com/blade-icons?set=1#search https://heroicons.dev https://fontawesome.com/search https://blade-ui-kit.com/blade-icons?set=20 удобный пакет иконок https://tailwindcss.com/docs https://artisan.page composer create-project laravel/laravel Name composer require filament/filament:"^3.2" -W php artisan filament:install --panels // выбрать admin php artisan vendor:publish --tag=filament-config php artisan vendor:publish --tag=filament-panels-translations composer require barryvdh/laravel-debugbar --dev composer require saade/filament-laravel-log:^3.0 // copy app/Providers/Filament/AdminPanelProvider.php, lang/vendor/log composer require kalnoy/nestedset // деревья если нужно // Logger composer require z3d0x/filament-logger php artisan filament-logger:install // copy app/Providers/Filament/AdminPanelProvider.php // Badge local indicator composer require pxlrbt/filament-environment-indicator // Color line indicator composer require njxqlus/filament-progressbar // Fontawesome composer require owenvoke/blade-fontawesome php artisan vendor:publish --tag=blade-fontawesome-config // JSON c подсветкой синтаксиса https://filamentphp.com/plugins/valentin-morice-json-column php artisan migrate php artisan make:filament-user // Create user Resource create php artisan make:filament-resource Name Page custom php artisan make:filament-page Test Переменные помощники: use Filament\Forms\Get; Get $get use Filament\Forms\Set; Set $set ?Model $record Livewire $livewire $form //$form->getOperation() === 'create' string $operation //fn (string $operation): bool => $operation === 'create' string $context //fn (string $context): bool => $context === 'create' ?string $state TextInput $component ?string $old Builder $query Production php artisan icons:cache Собрать стили, скрипты и пр. php artisan filament:assets // Health https://github.com/shuvroroy/filament-spatie-laravel-health // Графики https://filamentphp.com/docs/3.x/widgets/charts https://packagist.org/packages/leandrocfe/filament-apex-charts https://github.com/Flowframe/laravel-trend composer require flowframe/laravel-trend // Очереди https://packagist.org/packages/adrolli/filament-job-manager composer require adrolli/filament-job-manager composer require moox/jobs php artisan mooxjobs:install php artisan vendor:publish --tag="jobs-manager-migration" php artisan vendor:publish --tag="jobs-batch-migration" php artisan vendor:publish --tag="jobs-queue-migration" php artisan vendor:publish --tag="jobs-manager-foreigns-migration" php artisan queue:table php artisan queue:failed-table php artisan queue:batches-table php artisan migrate php artisan vendor:publish --tag="jobs-config" // Health checker https://github.com/shuvroroy/filament-spatie-laravel-health composer require shuvroroy/filament-spatie-laravel-health php artisan vendor:publish --tag="health-migrations" php artisan migrate php artisan filament:assets php artisan vendor:publish --tag="health-config" Schedule::command(RunHealthChecksCommand::class)->everyMinute(); // code in routes/console.php // Авторизация через Keycloack https://github.com/chrisreedio/socialment composer require chrisreedio/socialment php artisan socialment:install composer require socialiteproviders/keycloak // Swagger API https://github.com/DarkaOnLine/L5-Swagger composer require darkaonline/l5-swagger php artisan vendor:publish --provider "L5Swagger\L5SwaggerServiceProvider" php artisan l5-swagger:generate // ./vendor/bin/openapi public -o openapi.yaml L5_SWAGGER_GENERATE_ALWAYS=true // Laravel route attributes https://github.com/spatie/laravel-route-attributes composer require spatie/laravel-route-attributes php artisan vendor:publish --provider="Spatie\RouteAttributes\RouteAttributesServiceProvider" --tag="config"
Список