Laravel-Nova-Excel
Laravel-Nova-Excel copied to clipboard
Excel is failed to download in laravel nova
Hi I cannot download the excel from nova. it says "Failed-Forbidden" in chrome
Any one please kindly help.
I have also added Maatwebsite\LaravelNovaExcel\LaravelNovaExcelServiceProvider::class, to app.php but then also it did not worked
if ($this->app->environment('production')) {
URL::forceScheme('https');
$this->app['request']->server->set('HTTPS', true);
}
add this to AppServiceProvider is worked for me.
if ($this->app->environment('production')) { URL::forceScheme('https'); $this->app['request']->server->set('HTTPS', true); }
@bolechen This did not work for me