laravel 5 crude generator for complex database - laravel

I have used some CRUD generator for simple database with laravel. However, im working now on a project with many-to-one relationship and one-to-many
just wanna ask if anyone can recommend me a good CRUD generator with relations for laravel 5.2
thanx in advance

you may try link below :
Laravel Crud with scaffold-interface

See if this one helps you. Laravel crud generator!
Note: i found generated code is fully customization too.

Make a Laravel Application on top of well structed database from this repo.
https://github.com/digitaldreams/laracrud

Related

Laravel Migrations Scripts

I would like to know is there any feature in laravel to generate migration scripts dynamically ( I mean scripts not migration files) like in Doctrine?
I have researched in the internet but didn't find a solution.
In Eloquent I generated migration files and wrote migration scripts manully. But in Doctrine I can generate migration script from entities (models) by issuing command migrations:diff, migrations:migrate etc. Thanks in advance.
You never define any of your table's fields in your Model class, so Laravel doesn't even know where to get the diff in your database.
But if your database is already there, check this question: how to create migration from existing database in laravel

Can Laravel generate all mvc skeleton out of an existing table like that of cakephp's command cake bake all

I found laravel very interesting. But I'm wondering if there's any artisan command to generate all MVC skeleton files provided a database table all at ones. And how about separate generation of especially the model, given the table structure? or is there any alternative way to do the code generating?
You can create a migration file from the table via the package below.
https://github.com/Xethron/migrations-generator
Install it via : composer require --dev "xethron/migrations-generator"
Follow the package instructions, After connecting you application with the database simply run php artisan migrate:generate.
You will see number of migrations created via console message, You can also check your database/migrations folder for confirmation.
I didn't find how to do that, so I created my own code in order to create the models:
https://github.com/Triun/laravel-model-base
It is not super documented, but you can actually write your own addons in order to add custom business behaviors or include your own interfaces or traits to your models, with your own code.
And of course, reports and contributions are more than welcome.
I hope this helps.

How to integrate getstream in laravel 5.3

How to integrate getstream.io in laravel 5.3. How to integrate it with laravel eloquent? Please provide me details documentation of it.
We document the usage of the Stream-Laravel SDK here: https://github.com/GetStream/stream-laravel/blob/master/README.md
There are instructions there for setting up the configuration, names of your feeds, and details of how to extend your Eloquent models.
If you have a more specific integration question we're happy to answer it as well.

Replace laravel ORM to Spot

I'm trying to get ride of Eloquent in order to use Spot ORM in my Laravel 5.1 application. The thing is I have no idea how to do that..
I have tried to find a provider package for Spot on Laravel but the only repository I found is https://github.com/Dijky/spot-service-provider (for Silex framework).
Maybe it is possible to begin with this provider and adapt it to the laravel framework? I am trying to find it, so if someone knows please can you help?
Thanks !
Edit
Looking closer to the official github repository I found out there were already a laravel provider inside the provider directory

Generate laravel models from tables

I'm new to Laravel but have worked on Hibernate with Java.
Is there a way to generate models from existing tables?
All I found is creating migrations to create tables.
The Larry Four package will allow you to do so, but please note that I have not used it myself.

Resources