36 lines
561 B
PHP
36 lines
561 B
PHP
<?php
|
|
|
|
namespace Database\Factories;
|
|
|
|
use App\Models\Group;
|
|
use Illuminate\Database\Eloquent\Factories\Factory;
|
|
|
|
class GroupFactory extends Factory
|
|
{
|
|
/**
|
|
* The name of the factory's corresponding model.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $model = Group::class;
|
|
|
|
/**
|
|
* Define the model's default state.
|
|
*
|
|
* @return array
|
|
*/
|
|
public function definition()
|
|
{
|
|
return [
|
|
'id' => 1,
|
|
// 'site_id' // Needs to be passed in
|
|
// 'date_start',
|
|
// 'date_expire',
|
|
// 'parent_id',
|
|
'active' => TRUE,
|
|
// 'pricing',
|
|
// 'name',
|
|
];
|
|
}
|
|
}
|