first name and last name to full name
please help for display combine first name and last name to full name in Table builder
2 Replies
Use attributes. It's a laravel feature check their docs
There are a lot of technique for this, but you can try this one in your migration
$table->string('full_name')->virtualAs('concat(first_name, \' \', last_name)');
https://filamentphp.com/docs/3.x/forms/fields/select#customizing-the-relationship-option-labels