How to work with a custom User model ?
Hi, I need to add some columns to the classic Laravel User model, but it make the filament-user creation fail (because obviously the information for my columns are not asked in the artisan command).
So what can I do in this case ? I see a lot of projects where the User(s) model/table is not really used, and another table for some specific users (app-related) is created. For example a Owner table is created and the Resource for "users" is a OwnerResource.
So what can I do in this case ? I see a lot of projects where the User(s) model/table is not really used, and another table for some specific users (app-related) is created. For example a Owner table is created and the Resource for "users" is a OwnerResource.