mirror of
https://github.com/HDInnovations/UNIT3D-Community-Edition.git
synced 2026-02-13 23:19:55 -06:00
14 lines
293 B
PHP
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,
|
|
];
|
|
});
|