Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/african-leading-information-systems/dico
Manage dictionary data laravel package
https://github.com/african-leading-information-systems/dico
data-manager eloquent laravel laravel-package livewire php
Last synced: 3 months ago
JSON representation
Manage dictionary data laravel package
- Host: GitHub
- URL: https://github.com/african-leading-information-systems/dico
- Owner: african-leading-information-systems
- License: mit
- Created: 2020-10-27T09:05:13.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2021-02-11T12:16:47.000Z (almost 4 years ago)
- Last Synced: 2024-10-01T09:23:30.732Z (3 months ago)
- Topics: data-manager, eloquent, laravel, laravel-package, livewire, php
- Language: PHP
- Homepage:
- Size: 27.3 KB
- Stars: 3
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Dico package
## 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.```bash
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:
```bash
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
'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](http://opensource.org/licenses/MIT)