*/ class ProfitCenterSupplierScheduleFactory extends Factory { /** * Define the model's default state. * * @return array */ public function definition(): array { return [ 'profit_center_id' => \App\Models\ProfitCenter::factory(), 'supplier_id' => \App\Models\Supplier::factory(), 'delivery_schedule_id' => \App\Models\DeliverySchedule::factory(), ]; } }