Здравствуйте!
Непонятная для меня ситуация.
В файле routes/api.php определил маршрут:
Route::post('/email/verification-notification', [AuthController::class, 'emailVerificationNotification'])
->middleware(['auth', 'throttle:6,1'])
->name('verification.notification');
Но при попытке дернуть его из postman получаю сообщение:
The GET method is not supported for this route. Supported methods: POST
Хотя дергаю именно методом POST
Update: Кеш чистил php artisan route:clear
Возможно кто-то сталкивался с подобным?