Create Models from database in Laravel 5

前端 未结 4 941
你的背包
你的背包 2020-12-13 13:13

Is there some way to generate models from database in Laravel 5?

The generators package only create an empty model.

相关标签:
4条回答
  • 2020-12-13 13:35

    php artisan make:model Profile

    Profile - your table name. The models will not be generated if their is no auto incrementing primary key

    0 讨论(0)
  • 2020-12-13 13:41

    If you are using MySQL and Laravel 5.1 or above you can use php artisan code:models from this package: reliese/laravel. All you need to do is:

    1. composer require reliese/laravel
    2. Add the service provider to your config/app.php file Reliese\Coders\CodersServiceProvider::class
    3. Publish the config file with php artisan vendor:publish --tag=reliese-models
    4. Make sure your database is correctly configured in config/database.php and .env files.
    5. And finally issue the command: php artisan code:models

    This package will scan your database and create all models for you. If you need something more specific, you can customize its config file.

    Hope this helps :)

    0 讨论(0)
  • 2020-12-13 13:54

    There is a library Eloquent Model Generator which aim is creating Eloquent models classes using database tables as a source. It generates not only class stub, but relation methods, docblocks for magic fields, additional properties etc.

    It provides a console command php artisan krlove:generate:model ClassName for generating one class per one call, but you can create your own command to call this command for each table from your database.

    0 讨论(0)
  • 2020-12-13 13:55

    Easiest Way for creating models from database table is just following few steps of the a composer package as

    composer require laracademy/generators
    
    0 讨论(0)
提交回复
热议问题