ImportColumn::make('price')
->fillRecordUsing(function (Product $record, string $state): void {
$record->price_id = $record->price()->create([
'price' => $state,
'type' => 'one_time',
])->id;
})
->integer(),
ImportColumn::make('price')
->fillRecordUsing(function (Product $record, string $state): void {
$record->price_id = $record->price()->create([
'price' => $state,
'type' => 'one_time',
])->id;
})
->integer(),