File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ Trait for Laravel Eloquent models to allow easy implementation of a "like" or "f
12
12
13
13
#### Composer Install (for Laravel 5)
14
14
15
- composer require rtconner/laravel-likeable "~1.1 "
15
+ composer require rtconner/laravel-likeable "~1.2 "
16
16
17
17
#### Install and then run the migrations
18
18
@@ -23,7 +23,7 @@ Trait for Laravel Eloquent models to allow easy implementation of a "like" or "f
23
23
```
24
24
25
25
``` bash
26
- php artisan vendor:publish --provider=" Conner\Likeable\LikeableServiceProvider"
26
+ php artisan vendor:publish --provider=" Conner\Likeable\LikeableServiceProvider" --tag=migrations
27
27
php artisan migrate
28
28
```
29
29
Original file line number Diff line number Diff line change @@ -14,8 +14,8 @@ class LikeableServiceProvider extends ServiceProvider
14
14
public function boot ()
15
15
{
16
16
$ this ->publishes ([
17
- __DIR__ .'/../migrations/ ' => database_path ('migrations ' )
18
- ], 'migrations ' );
17
+ __DIR__ .'/../migrations/ ' => database_path ('migrations ' )
18
+ ], 'migrations ' );
19
19
}
20
20
21
21
public function register () {}
You can’t perform that action at this time.
0 commit comments