AP
Size: a a a
AP
VY
VY
AB
$rows = [
[
'device_id' => 3
'price' => 321312
],
[
'device_id' => 1,
'price' => 1123
]
];
Validator::make($rows, [
'*.device_id' => ['required', 'integer', 'exists:devices,id', 'unique:prices,device_id'],
'*.price' => ['required', 'numeric', 'min:0', 'max:16777215'],
])
->validate();
Price::createMany($rows);
AP
AH
AP
AH
AH
ВШ
П
П
AB
Y
V
V
Y
AH
YH