Skip to content

Commit

Permalink
Fix the typo in publish command
Browse files Browse the repository at this point in the history
  • Loading branch information
umutphp committed May 28, 2021
1 parent 27ce9e2 commit ce2c5d5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ composer require "umutphp/laravel-model-recommendation"
### Prepare The Database

```bash
php artisan vendor:publish --provider="Spatie\MediaLibraryPro\MediaLibraryProServiceProvider" --tag="media-library-pro-migrations"
php artisan vendor:publish --provider="\Umutphp\LaravelModelRecommendation\ModelRecommendationServiceProvider"
php artisan migrate
```

Expand Down Expand Up @@ -120,7 +120,7 @@ For these functions (generateRecommendations() and getRecommendations()) to be e

You want to get recommendations for products (sold together) in an e-commerce site. You have `Product` model and `order_products` table storing the relation between orders and products.

*order_products* table;
**order_products** table;

| Field1 | Field2 | Field3 | Field4 | Field5 | Field6 |
| --- | --- | --- | --- | --- | --- |
Expand Down Expand Up @@ -163,7 +163,7 @@ class Product extends Model implements InteractWithRecommendation

You want to get recommendations for users in a dating site. You have `User` model and `user_friends` table storing the relation between users.

*user_friends* table;
**user_friends** table;

| Field1 | Field2 | Field3 | Field4 | Field5 |
| --- | --- | --- | --- | --- |
Expand Down

0 comments on commit ce2c5d5

Please sign in to comment.