My laravel version is 9.19. When I click on logout menu its working fine. But when I manually type 'logout' in url it gives the error - The GET method is not supported for route logout. Supported methods: POST.
It shows as a POST route in route:list:
POST logout .............. logout › Auth\LoginController@logout
in web.php:
Auth::routes( [ 'register' => false ] );
How can i solve this in case of manually type 'logout' in url?

Found a solution, added this into my web.php