DossierApplicantFactory.php
1 <?php 2 3 namespace Database\Factories; 4 5 use App\Models\DossierApplicant; 6 use Illuminate\Database\Eloquent\Factories\Factory; 7 8 class DossierApplicantFactory extends Factory 9 { 10 /** 11 * The name of the factory's corresponding model. 12 * 13 * @var string 14 */ 15 protected $model = DossierApplicant::class; 16 17 /** 18 * Define the model's default state. 19 * 20 * @return array 21 */ 22 public function definition() 23 { 24 return [ 25 'dossier_id' => \App\Models\Dossier::first()->id, 26 'applicant_id' => \App\Models\Applicant::first()->id, 27 'representative_id' => \App\Models\Consultant::first()->id, 28 'consultancy_id' => \App\Models\Consultancy::first()->id, 29 ]; 30 } 31 }