このリポジトリは2023-09-09にアーカイブされています。 ファイルの閲覧とクローンは可能ですが、プッシュ、イシューの作成、プルリクエストはできません。
kikikan/backend/database/factories/FatherRelationsFactory.php

29 行
487 B
PHP
Raw 通常表示 履歴

2021-09-28 14:38:41 +09:00
<?php
namespace Database\Factories;
2021-11-30 12:00:09 +09:00
use App\Models\FatherRelation;
2021-09-28 14:38:41 +09:00
use Illuminate\Database\Eloquent\Factories\Factory;
class FatherRelationsFactory extends Factory
{
/**
* The name of the factory's corresponding model.
*
* @var string
*/
2021-11-30 12:00:09 +09:00
protected $model = FatherRelation::class;
2021-09-28 14:38:41 +09:00
/**
* Define the model's default state.
*
* @return array
*/
public function definition()
{
return [
//
];
}
}