LaravelPackages.net
Acme Inc.
Toggle sidebar
batiscaff/laravel-fields-kit

Custom fields for model in Laravel-Livewire

59
0
About batiscaff/laravel-fields-kit

batiscaff/laravel-fields-kit is a Laravel package for custom fields for model in laravel-livewire. It currently has 0 GitHub stars and 59 downloads on Packagist. Install it with composer require batiscaff/laravel-fields-kit. Discover more Laravel packages by batiscaff or browse all Laravel packages to compare alternatives.

Last updated

Custom fields

Installation

  1. Install the package via composer:
composer require batiscaff/laravel-fields-kit
  1. 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,
];
  1. You should publish the migration and the config/fields-kit.php config file with:
php artisan vendor:publish --provider="Batiscaff\FieldsKit\FieldsKitServiceProvider"
  1. 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
Comments