We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a92838b commit d43f549Copy full SHA for d43f549
README.md
@@ -13,10 +13,17 @@ Library for [laravel-crud-wizard-free](https://github.com/macropay-solutions/lar
13
``` composer require macropay-solutions/laravel-crud-wizard-generator --dev ```
14
15
16
-2\. Publish the provider:
+2\. Publish the provider in laravel:
17
18
``` php artisan vendor:publish --provider="MacropaySolutions\LaravelCrudWizardGenerator\LaravelCrudWizardGeneratorServiceProvider" ```
19
20
+or in lumen add in bootstrap/app.php
21
+
22
+```php
23
+if (\env('APP_ENV') === 'local') {
24
+ $app->register(\MacropaySolutions\LaravelCrudWizardGenerator\LaravelCrudWizardGeneratorServiceProvider::class);
25
+}
26
+```
27
28
## Usage
29
0 commit comments