acorn
acorn copied to clipboard
Create FoundationServiceProvider.php
Radicle (and so, Acorn) is missing the FoundationServiceProvider
, causing multiple errors :
-
\Illuminate\Http\Request
class is missing thevalidate()
method - The custom FormRequests are not working, because of the missing call to the related service provider
- The dumper on Radicle is broken
By adding this Service provider to the config/app.php
file, it fixes those errors.
'providers' => [
...
Roots\Acorn\Providers\FoundationServiceProvider::class,
],
Tested on Radicle stack.