Skip to content

Commit

Permalink
Fixed errors in Readme
Browse files Browse the repository at this point in the history
Installation wasn't working - wrong namespace
  • Loading branch information
PovilasKorop authored Jul 3, 2017
1 parent e23e236 commit 78a0e2e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,14 @@ Next, you must install the service provider:
// config/app.php
'providers' => [
...
SanderVanHooft\PayableRedirect\InvoicableServiceProvider::class,
SanderVanHooft\Invoicable\InvoicableServiceProvider::class,
];
```

You can publish the migration with:

``` bash
$ php artisan vendor:publish --provider="SanderVanHooft\PayableRedirect\InvoicableServiceProvider" --tag="migrations"
$ php artisan vendor:publish --provider="SanderVanHooft\Invoicable\InvoicableServiceProvider" --tag="migrations"
```

After the migration has been published you can create the invoices and invoice_lines tables by running the migrations:
Expand Down

0 comments on commit 78a0e2e

Please sign in to comment.