How do I modify the command for creating filament admins?
I have a users table with first and last name columns. In creating filament users, I want to provide data for the first and last name fields. How do I achieve this? I didn't a solution in the docs. Thanks in advance.
Solution:Jump to solution
Hello there, you can create your artisan command and base of this https://github.com/filamentphp/filament/blob/3.x/packages/panels/src/Commands/MakeUserCommand.php
GitHub
filament/packages/panels/src/Commands/MakeUserCommand.php at 3.x · ...
A collection of beautiful full-stack components for Laravel. The perfect starting point for your next app. Using Livewire, Alpine.js and Tailwind CSS. - filamentphp/filament
3 Replies
Solution
Hello there, you can create your artisan command and base of this https://github.com/filamentphp/filament/blob/3.x/packages/panels/src/Commands/MakeUserCommand.php
GitHub
filament/packages/panels/src/Commands/MakeUserCommand.php at 3.x · ...
A collection of beautiful full-stack components for Laravel. The perfect starting point for your next app. Using Livewire, Alpine.js and Tailwind CSS. - filamentphp/filament
Laravel - The PHP Framework For Web Artisans
Laravel is a PHP web application framework with expressive, elegant syntax. We’ve already laid the foundation — freeing you to create without sweating the small things.
Awesome, thanks. Just wanted I needed.