Starting with existing database on Laravel 5

13,752

Solution 1

Try this one: https://github.com/reliese/laravel

Reliese Laravel is a collection of Laravel Components which aim is to help the development process of Laravel applications by providing some convenient code-generation capabilities.

Solution 2

How about this: http://packalyst.com/packages/package/ignasbernotas/laravel-model-generator

Model generator Laravel 5 model generator for an existing schema.

It plugs into your existing database and generates model class files based on the existing tables.

Share:
13,752
Santosh Achari
Author by

Santosh Achari

Updated on July 24, 2022

Comments

  • Santosh Achari
    Santosh Achari almost 2 years

    I have been enjoying working on Laravel for a while now, and am planning to move a fairly large project to Laravel 5.

    The new project has fairly large database with numerous tables, and it would take considerable amount of time build migrations, models and controllers individually.

    Has anybody worked on this before? What is the best way to go about it?

    I have used this great extension to generate migrations as of now - but still for a 200+ tables, it would take quite a long time to do the rest.