rjacobsen2012 / Eloquent-Model-Generator by rjacobsen

Auto-generates all Eloquent models from the database in a Laravel 5 project.
3,016
8
0
Package Data
Maintainer Username: rjacobsen
Maintainer Contact: olivier.pepijn@gmail.com (Pepijn Olivier)
Package Create Date: 2015-08-12
Package Last Update: 2015-08-12
Language: PHP
License: MIT
Last Refreshed: 2024-04-22 03:04:25
Package Statistics
Total Downloads: 3,016
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 8
Total Watchers: 0
Total Forks: 0
Total Open Issues: 0

Eloquent-Model-Generator for Laravel 5

Auto-generates all Eloquent models from the database in a Laravel 5 project. This will also add all relation functions to your generated models (belongsTo, belongsToMany, hasMany, hasOne).

I'm also creating a ServiceProvider that will auto-generate basic CRUD functionality for these models. For now, you can use Laravel Administrator for this task.

##Installation

Add the following packages to your composer.json

"require-dev": {
    "xethron/migrations-generator": "dev-l5",
    "way/generators": "dev-feature/laravel-five-stable",
    "user11001/eloquent-model-generator": "dev-master"
}

You also need to point to the fork of the way/generators repo. See Xethron/migrations-generator for more info about this.

"repositories": [
    {
        "type": "git",
        "url": "git@github.com:jamisonvalenta/Laravel-4-Generators.git"
    }
]

Next, run composer update

Next, add the following service providers to your config/app.php

'Way\Generators\GeneratorsServiceProvider',
'Xethron\MigrationsGenerator\MigrationsGeneratorServiceProvider',
'User11001\EloquentModelGenerator\EloquentModelGeneratorProvider',

Lastly, make sure your .env file has correct database information

##Usage

php artisan models:generate