D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
forge
/
kader-lms.com
/
database
/
factories
/
Filename :
SmWeekendFactory.php
back
Copy
<?php namespace Database\Factories; use App\SmWeekend; use Illuminate\Database\Eloquent\Factories\Factory; class SmWeekendFactory extends Factory { /** * The name of the factory's corresponding model. * * @var string */ protected $model = SmWeekend::class; /** * Define the model's default state. * * @return array */ public $days=['Saturday', 'Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday']; public $i=0; public function definition() { return [ 'name' => $this->days[$this->i++], 'order' => $this->i + 1, ]; } }