Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

777not888's avatar

Custom table for Laravel Nova users

I want to use another table for users of Laravel Nova, for example, 'nova_users'. What I should to do for that?

0 likes
2 replies
Pixelairport's avatar

Maybe create another resource or update the user resource. The resouce is bound to the Model. Look at app/Nova/User. There is this line:

public static $model = \App\Models\User::class;

Use your model and set database in users. But that would change your whole User model. Im not sure what you do, but would say just create another resource:

php artisan nova:resource NovaUser

Please or to participate in this conversation.