FFilament•Created by jeph on 2/9/2024 in #❓┊help two columns from a single database column
Virtual columns?
$table->string('first_name')->virtualAs('substring_index(name, \' \', 1)');
$table->string('last_name')->virtualAs('substring_index(name, \' \', -1)');
I have no idea if that works, just copypasted stuff