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
<meta name="csrf-token" content="{{ csrf_token() }}">
And you can then fetch said CSRF token by doing this
$('meta[name="csrf-token"]').attr('content')