just delete the views you don't use
Laravel Breeze, do I need guest layout?
Hi, i'm making a web app where there will be 4 types of users (users that wont register, user registered, subscriptors and admins). Since the start I've used laravel Breeze to set up the auth scaffolding, but I've seen that it generates a guest.blade.php aswell as GuestLayout.php component. Do I really need this guest thing? Because users that wont register and just visit the page wont have any role and I'm a bit confused because the guest.blade.php that breeze generates wont be used on my project. I'm fine with just having the app.blade.php to set all the layout and I would show things using guest, auth blade directives. But in the other hand I cant delete all this guest thing that Breeze generates. I dont know i'm a bit confused about that. I feel like I just dont need all this guest thing but Breeze is forcing me to use it.
Hope someone can clarify this a bit and help me. Thanks a lot!
@ignaaaam that is the GuestLayout component - you can delete that too if you have determined that you don't need the layout.
Before you do, search your project for x-guest-layout because there are a number of Breeze's view that use it, such as Login, Password Reset, Verify Email etc etc.
Please or to participate in this conversation.