Saturday, August 13, 2016

Laravel collection function for easy fetching data

Laravel collection function for easy fetching data:

For fetching data in easy way :

Let us assume I'm fetching an object form a table Likes and want to know, it is liked by which users.

For this :

$v->likes->keyBy('liked_by')->has($userId);

It will be very easy way for getting value from this collection object.

Thanks

No comments:

Post a Comment