Configration
- Add service provider into /config/app.php file.
'providers' => [ ... T73BizCrudGeneratorCrudGeneratorServiceProvider::class, ],
Add bellow lines for “laravelcollective/html” package if you’ve not done yet.
'providers' => [ ... CollectiveHtmlHtmlServiceProvider::class, ], 'aliases' => [ ... 'Form' => CollectiveHtmlFormFacade::class, 'HTML' => CollectiveHtmlHtmlFacade::class, ],
- Run composer update
Note: You should have configured database as well for this operation.