I'm building an app which requires user authentication.
(Till now I have always built monolithic apps. This is my first attempt at building a backend which is completely decoupled from the front end.)
The backend is a Laravel API and the frontend will be a React app in an independent repo.
Should I have used Laravel Passport instead of Laravel Breeze or are they supposed to be used together? I have never used the former.
Should I refactor my project and remove all Breeze code in order to use Passport instead?