diff --git a/README.md b/README.md index 049bc75..b3e3680 100644 --- a/README.md +++ b/README.md @@ -39,8 +39,6 @@ Amranidev\Laracombee\Providers\LaracombeeServiceProvider::class, Congratulations, you have successfully installed Laracombee! -
- # Usage With Laracombe, the integration of your data is simple, as you may know, Recombee used the user-item based database to predict recommendation based on users interests and interactions, so, you have to address which Laravel eloquent model you want to use as user as well as item. @@ -99,8 +97,6 @@ Add column : `php artisan laracombee:add email:string age:integer --to=user` Drop column : `php artisan laracombee:drop email age --from=user` -
- ## Laracombee magic methods. The package allows to manage recombee users/items through magic methods. @@ -168,8 +164,6 @@ Update an item, `Laracombee::updateItem($item);` Add multiple items, `Laracombee::addItems($items);` -
- # API. Laracombee follows the same naming conventions as recombee, please check recombee api [docs](https://docs.recombee.com/api.html). @@ -254,8 +248,6 @@ Recommendation methods are capable of recommending items (Recommend items to use - Get similar users as some given user, based on the user’s past interactions (purchases, ratings, etc.) and values of properties, `Laracombee::recommendUsersToUser($user_id, $limit, $options);` -
- # Tailor your own magic methods. Sometimes, we need to keep our code consistent, so we wish that we can extend the installed package functionality and adapt it to our needs.