0👍
Maybe this would give you name and name price so the label would show the Name and Price
Select::make('Product')->options(\App\Product::select(DB::Raw('CONCAT(name," ",price) as label'),'name')->get()->pluck('name','label')->toArray())->rules('required');
- [Vuejs]-Adding element to array via UIKit modal not working in vuejs
- [Vuejs]-Vue remove duplicate values after sort function
Source:stackexchange.com