SpartnerNL / Laravel-Nova-Excel

🚀 Supercharged Excel exports for Laravel Nova Resources
https://docs.laravel-excel.com/nova/1.0/
MIT License
374 stars 73 forks source link

Excel is failed to download in laravel nova #157

Open Rik0253 opened 1 year ago

Rik0253 commented 1 year ago

Hi I cannot download the excel from nova. it says "Failed-Forbidden" in chrome image

Any one please kindly help.

I have also added Maatwebsite\LaravelNovaExcel\LaravelNovaExcelServiceProvider::class, to app.php but then also it did not worked

bolechen commented 1 year ago
    if ($this->app->environment('production')) {
        URL::forceScheme('https');
        $this->app['request']->server->set('HTTPS', true);
    }

add this to AppServiceProvider is worked for me.

Rik0253 commented 1 year ago

if ($this->app->environment('production')) { URL::forceScheme('https'); $this->app['request']->server->set('HTTPS', true); }

@bolechen This did not work for me