-1
Assuming I have to develop 1 app and 2 dashboards, the mobile app is powered by an api developed in php (which is managed by one of these dashboards), and the other dashboard connects to the app. The 2 panels are web.
Example:
The user logs into the app and checks in at the barber shop, the barbershop controls his clients through the dashboard and I manage the 2 through my dashboard.
Doubts:
The API and the 2 panels can be developed in the same project of the Laravel being accessed separately by subdomain or it is better to develop and host each separately?
It is safe to use the same domain for multiple systems, taking into account that payments will be used?
You can put everything together, Laravel has a domain option on your router. If the rest is safe, the domain matters little
– Costamilam