I have already read some topics
And the problem I encountered is lies in this piece of code
<meta property="csrf-token" name="csrf-token" content="{{ csrf_token() }}">
I'm using Angular2 as core engine, which sending AJAX requests to Laravel API and I'm not using blade templates - just .html files
, so I can't call php function csrf_token()
from html file
So, I added a temporary solution by extending my /var/www/pandacrm/app/Http/Middleware/VerifyCsrfToken.php file
public function handle($request, Closure $next)
{
if ( ! $request->is('api/*'))
{
return parent::handle($request, $next);
}
return $next($request);
}
But it seems not the best way to work around, is there any other solutions to resolve this issue?