Configration

  1. 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,
    ],
  2. Run composer update

Note: You should have configured database as well for this operation.