Hi @dipcb05
If they are to be completely standalone separate apps, then make them separate apps, and you could host ot on a subdomain or something.
However, if the admin needs to exist within the main app, then that is fine too, you just need to have a way of identifying them from normal users.
There are at least 2 ways that you can do this.
-
Do a duel model login - this is not something I have done before, but I did find a video series to it before, that I linked to in this post: https://laracasts.com/discuss/channels/laravel/how-do-i-authenticate-two-models
-
Use something like https://github.com/spatie/laravel-permission to have different roles for users (this is the method I have used, and it works quite well)