Hi,
I've already integrated koolreports dashboards within my Laravel application. It all works fine, but now I'm trying to use the new dashboard export functionality. All I did so far is to follow the instruction in your documentation, trying to export a very simple test dashboard. However, when I click the export button I get a "CSRF token mismatch" exception.
I already have this function in my app.php file of the dashboard:
protected function csrf()
{
return CSRF::create()
->name("_token")
->token(csrf_token());
}
But it seems that the export function is using a different token. Can you please let me know if I'm doing something wrong or if the export functionality is not yet set up for Laravel application?
Thanks and best regards
Christian