d2d.emegrendeles.hu/database/factories/ProfitCenterSupplierScheduleFactory.php
2026-04-15 06:42:55 +02:00

27 lines
648 B
PHP

<?php
namespace Database\Factories;
use App\Models\ProfitCenterSupplierSchedule;
use Illuminate\Database\Eloquent\Factories\Factory;
/**
* @extends Factory<ProfitCenterSupplierSchedule>
*/
class ProfitCenterSupplierScheduleFactory extends Factory
{
/**
* Define the model's default state.
*
* @return array<string, mixed>
*/
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(),
];
}
}