I would to make a website with CakePHP 4, with a public part, an admin interface with it’s own layout, and member area with another layout.
The login form should have separate style too.
For that, I will make 2 tables in the BDD, one for the admins and another for the members, but I don’t understad how to adapt the CMS tuto to make thy system with member and admin area separate layout.
There are tuto or explanation to make this system ?
Just set the layout and maybe use two separate controllers (eg AdminController and UserController) that extend a common controller (eg. AccountController).