Select::make('variety_detail_id')
->options(
function (callable $get) {
if ($get('product_id')) {
$category_id = Product::where(['id' => $get('product_id')])->get()[0]['category_id'];
$variety_id = Category::where('id', $category_id)->get()[0]['variety_id'];
return VarietyDetail::where('variety_id', $variety_id)->get()||->pluck('value', 'id')||;
}
}
)
Select::make('variety_detail_id')
->options(
function (callable $get) {
if ($get('product_id')) {
$category_id = Product::where(['id' => $get('product_id')])->get()[0]['category_id'];
$variety_id = Category::where('id', $category_id)->get()[0]['variety_id'];
return VarietyDetail::where('variety_id', $variety_id)->get()||->pluck('value', 'id')||;
}
}
)