I am exploring the possibility of using Laravel in our startup. Looking to explore it through an app that provides above all to see how that behaves and how it compares to codeigniter framework.
2 Answers
I haven't found something with everything you request, but there are two excellent bundles for Laravel 3.2.1 that provide base platforms to build your apps.
1) bundles.laravel.com/bundle/orchestra
2) www.getplatform.com
Both have authentication / authorization, user management, and Twitter bootstrap support.
To my knowledge, neither works natively with Mongo, however, you may be able to plugin the Mongo Bundle
Comments
I don't know of a package with all your requirements [specially Mongo], but if you are looking for row level authentication, I wrote a sample app which you can see on my github. The little 'allowed' filter that I wrote (app/filters.php) allows you to define any permission you want for any page/link and then you can enforce it in your app/routes.php or blade template.