alis / dico
Dictionary data manager
Installs: 13 634
Dependents: 0
Suggesters: 0
Security: 0
Stars: 3
Watchers: 3
Forks: 2
Open Issues: 0
Requires
- livewire/livewire: ^2.2
- spatie/laravel-translatable: ^4.5
Requires (Dev)
- orchestra/testbench: ^4.0|^5.0|^6.0
- phpunit/phpunit: ^8.5
This package is auto-updated.
Last update: 2024-11-11 20:51:50 UTC
README
Introduction
It's basically livewire based as scaffolding for the moment for the CRUD, but you can still do without that and use your tools yourself. Dico uses boostrap as the base UI, but you can still push package views and customize them.
We are planning to add more scaffolding, so you will have the flexibility to choose the right scaffold for you.
Installation
Require this package in your composer.json and update composer.
composer require alis/dico
Configuration
Laravel 5.5 uses Package Auto-Discovery, so doesn't require you to manually add the ServiceProvider/Facade.
Finally you can publish the config file:
php artisan vendor:publish --provider="Alis\Dico\DicoServiceProvider"
Config file
The main change to this config file (config/dico.php) will be the path to the binaries.
<?php return [ 'stack' => 'livewire', 'model' => [ 'dictionary' => \Alis\Dico\Dictionary::class, 'type_dictionary' => \Alis\Dico\TypeDictionary::class, ], 'databases' => [ 'soft_delete' => false, 'sluggable' => false ], 'lang' => ['en'], 'route_key_name' => null, ];
Using
Licenses
This packages is open-sourced software licensed under the MIT license