I started to use Laravel 10.
I also installed Laravel UI package (composer require laravel/ui --dev) and Bootstrap Auth Scaffolding (php artisan ui bootstrap --auth).
After installing I got several predefined baldes such as register.blade.php, login.blade.php, ...
In register.blade.php the form uses this action: action="{{ route('register') }}"
How does predefined routes work in Laravel 10? Where is the 'register' route defined?
I tired to find where 'register' route is defined but couldn't. It is not in the routes/web.php file and I couldn't find it anywhere else.