I started to learn Yii a little while ago and loved the way that the Gii generator could generate a CRUD very fast, do Lavarel has this as well? As it is a real gain of time.
Also, how can I integrate bootstrap quickly in Lavarel please as for me the look of the project is very important.
As far as I know there isn't a official CRUD generator, but for the bootstrap problem: You can use a CDN and put it in your main layout file.
Like this:
Sorry one last question. I have installed boostrap but how to add a class here please:
$user->username = Input::get('username');
$user->password = Hash::make(Input::get('password'));
I see....I added bootstrap and realized, ouch, it is going to take far more time than with Yii which has yiistrap, no need to add classes, it is all done for you. Will the dev ever think about having a Lavastrap or something that could attach classes to all the inputs automatically?
I often use the frozennode/administrator package in the first stages of my project. If you have setup models you can very quickly have a admin style dashboard ready to use. Supports relationships etc. Not perfect, but fast
I havent tried it myself, but I dont see why it wouldn't. You supply the namespace for each of your models, it published stuff to the public and config directory (which I think are configurable anyway)