Posts in Laravel (2 found)
W. Jason Gilmore 1 years ago

Disabling SSL Validation in Bruno

I use Laravel Herd to manage local Laravel development environments. Among many other things, it can generate self-signed SSL certificates. This is very useful however modern browsers and other HTTP utilities tend to complain about these certificates. Fortunately it's easy to disable SSL validation by opening Bruno, navigating to under the menu heading, and unchecking .

0 views
W. Jason Gilmore 4 years ago

Laravel Jetstream: Changing the Login Redirection URL

By default Laravel Jetstream will redirect newly logged in users to the route. A side project I'm building didn't have a need for a general post-authentication landing page, and so I needed to figure out how to redirect the user elsewhere. Turns out it's pretty easy. Open and locate this line: Change it to: Of course you'll want to swap out with your desired route name. You can retrieve a list of route names for your application by running:

0 views