batiscaff / laravel-fields-kit
Custom fields for model in Laravel-Livewire
dev-master
2023-02-02 09:46 UTC
Requires
- php: ^8.0
- buglinjo/laravel-webp: ^2.3
- laravel/framework: ^9.0
- livewire/livewire: ^2.5
This package is auto-updated.
Last update: 2025-03-29 01:04:16 UTC
README
Installation
- Install the package via composer:
composer require batiscaff/laravel-fields-kit
- Optional: The service provider will automatically get registered. Or you may manually add the service provider in your config/app.php file:
'providers' => [ // ... Batiscaff\FieldsKit\FieldsKitServiceProvider::class, ];
- You should publish the migration and the config/fields-kit.php config file with:
php artisan vendor:publish --provider="Batiscaff\FieldsKit\FieldsKitServiceProvider"
- Run the migrations: After the config and migration have been published and configured, you can create the tables for this package by running:
php artisan migrate