Laravel 4中的行级ACL

Is it possible to create row-level authentication in Laravel 4? Is there any bundle or package for it?

There is a new Laravel 4 ACL component that you can use:

https://github.com/Vivify-Ideas/laravel-acl

I'm not aware of any packages for that.

And to understand your question better: I suppose you mean adding a 'user_id' of 'group_id' column to your table and filter on those?

[edit] If that is the case, you can simply add ->where('user_id', '=', $user_id) to your queries.

As of laravel 4 its not advisable to use bundles, we can use packages for it. I haven't really tried using it but seems like it can work: click here If not you can find all most all packages for the site mentioned above.

You can update the composer.json with that particular package name and install it using

php composer.phar update

Please let me know if it works :)

Thanks :)