Laravel-Nova-Excel icon indicating copy to clipboard operation
Laravel-Nova-Excel copied to clipboard

Excel is failed to download in laravel nova

Open Rik0253 opened this issue 2 years ago • 2 comments

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

Rik0253 avatar Jan 05 '23 16:01 Rik0253

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

add this to AppServiceProvider is worked for me.

bolechen avatar Sep 07 '23 08:09 bolechen

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

@bolechen This did not work for me

Rik0253 avatar Sep 07 '23 18:09 Rik0253