From 78a0e2e2732ae64041c658246452b51db8496b09 Mon Sep 17 00:00:00 2001 From: PovilasKorop Date: Mon, 3 Jul 2017 08:41:04 +0300 Subject: [PATCH] Fixed errors in Readme Installation wasn't working - wrong namespace --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index dbea9a4..ad0a622 100644 --- a/README.md +++ b/README.md @@ -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: