D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
forge
/
kader-lms.com
/
database
/
factories
/
Filename :
SmStudentGroupFactory.php
back
Copy
<?php namespace Database\Factories; use App\Models\Model; use App\SmStudentGroup; use Illuminate\Database\Eloquent\Factories\Factory; class SmStudentGroupFactory extends Factory { /** * The name of the factory's corresponding model. * * @var string */ protected $model = SmStudentGroup::class; /** * Define the model's default state. * * @return array */ public $i=0; public function definition() { return [ 'group'=>$this->faker->word . $this->i++, ]; } }