Select Field Options Key And Value
i have select options like this
Select::make('game')
->options([
"f" => "football",
"c" => "cricket",
]),
and i do want to modify the key value i.e f,c
so as in database it save with key value i.e f,c so in the list page table column it showing me with that key value i.e f,c
but i want in table column it show me football,cricket like that.
so how to fix this ??
3 Replies
How to solve this ??
Thank You