Files
UNIT3D-Community-Edition/database/factories/PageFactory.php
HDVinnie de0b19f27d Apply fixes from StyleCI
[ci skip] [skip ci]
2020-02-14 21:42:32 +00:00

14 lines
293 B
PHP

<?php
/* @var $factory \Illuminate\Database\Eloquent\Factory */
use Faker\Generator as Faker;
$factory->define(App\Models\Page::class, function (Faker $faker) {
return [
'name' => $faker->name,
'slug' => $faker->slug,
'content' => $faker->text,
];
});