Pass csrf token from Laravel to Vue I have a separate Vue app for client and Laravel for back-end (API). I use Cookies so I need csrf prote
Take a look at this documentation
If you add this to your blade template in the head then you can always pull the CSRF token from there
And you can then fetch said CSRF token by doing this
$('meta[name="csrf-token"]').attr('content')