You can disable CSRF protection for specific routes using the withoutMiddleware method.
withoutMiddleware
Example: Route::post('/your-route', 'YourController@yourMethod')->withoutMiddleware('web');
Route::post('/your-route', 'YourController@yourMethod')->withoutMiddleware('web');