frebato/gucci

facilitates the implementation of an automated back office

Maintainers

👁 franckq25654

Package info

gitlab.com/franckq25654/frebato-gucci

Homepage

Issues

pkg:composer/frebato/gucci

Statistics

Installs: 52

Dependents: 0

Suggesters: 0

Stars: 0

dev-master 2023-02-01 12:29 UTC

Requires

Requires (Dev)

Suggests

None

Provides

None

Conflicts

None

Replaces

None

MIT c93a460a7dfc7d27892650cc52605ccaa2a0678c

  • Taylor Otwell <taylorotwell.woop@gmail.com>
  • Franck Rebato <frebato.woop@outlook.com>

This package is not auto-updated.

Last update: 2026-06-18 03:46:07 UTC


README

Préambule

nano ~/.bashrc

alias sail='bash vendor/bin/sail'

source ~/.bashrc

Gucci

Installation

Add Gucci to your composer.json file :

sudo chown -R $(whoami):$(whoami) . && chmod -R 755 .
sail shell
composer require frebato/gucci:dev-master -W

Update Composer :

composer update
composer dump-autoload

The next required step is to add the service provider to :

Frebato\Gucci\ServiceProvider::class,
Lab404\Impersonate\ImpersonateServiceProvider::class,

Publish

The last required step is to publish views and assets in your application with :

php artisan ui vue --auth
php artisan vendor:publish --tag=frebato-gucci
php artisan gucci:install

after that

composer dump-autoload
  • add use HasDTO; trait in each Models
  • add use HasRole; trait in User Model
php artisan gucci:make-dto

After that, customize DTO file generate in , then :

php artisan gucci:make-datatables
php artisan gucci:generate-migrations
php artisan migrate
php artisan db:seed
npm update
npm run build

Then, go for a walk on the side of to customize the admin panel

Finalize configuration

Add this at bottom of routes/web.php file :

require __DIR__.'/gucci.php';

Congratulations, you have successfully installed Gucci !