27 lines
648 B
PHP
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(),
|
|
];
|
|
}
|
|
}
|