i installed jetstream in laravel. At the ... / user / profile page I can't quite understand how they built it. I don't find route, controller and model how could I change them?
You can find the controller at vendor/laravel/jetstream/src/Http/Controllers/Inertia/UserProfileController.php
and running php artisan route:list may help.
@1mr3yn any idea why it was done this way? without knowing better, at first glance this seems horrible from readability / usability / troubleshooting.
I wanted to give jetstream a try but it looks like half the app is located in a vendor sub folder and not the usual Laval places -- however I am completely open to the idea I'm suffering from the Dunning–Kruger effect.
just run this command in your terminal route find it you routes folder routes/jestream.php. php artisan vendor:publish --provider="Laravel\Jetstream\JetstreamServiceProvider" --tag=jetstream-routes @hanstiefel