batiscaff/laravel-fields-kit

Custom fields for model in Laravel-Livewire

dev-master 2023-02-02 09:46 UTC

This package is auto-updated.

Last update: 2024-04-30 00:45:45 UTC


README

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