unisharp/laravel-unifly

it can generate entities by arca principle

Package info

github.com/UniSharp/laravel-unifly

pkg:composer/unisharp/laravel-unifly

Statistics

Installs: 2

Dependents: 0

Suggesters: 0

Stars: 3

Open Issues: 0

dev-master 2017-04-27 10:46 UTC

Requires

Requires (Dev)

Suggests

None

Provides

None

Conflicts

None

Replaces

None

MIT d4ed62ca30cd0b370246388f9a86c87c0476753f

dataapilaravel

This package is auto-updated.

Last update: 2026-06-15 20:31:03 UTC


README

Introduction

It contain artisan make:entity command , it will make unisharp work on the fly

Install Data Carrier

composer.json:

"require" : {
 "unisharp/laravel-unifly" : "dev-master"
}, 
"repositories": {
 "type": "git",
 "url": "git@bitbucket.org:unisharp/laravel-unifly.git"
}

save it and then

composer update unisharp/laravel-unifly 

Set ServiceProvider and Set Facade

in config/app.php:

  • ServiceProfider

     Unisharp\Unifly\UniflyServiceProvider::class,
    

Usage

  • main command

     php artisan make:entity XXX
    

    it will generate XXX entity and other views, repository to work with this entity

  • with translatable

     php artisan make:entity XXX --translatable