uff muchas cosas, agrege projecto y setup

This commit is contained in:
Daniel Cortés
2019-10-14 22:59:22 -03:00
parent 45a441bb2c
commit a7929c0097
36 changed files with 334 additions and 147 deletions

View File

@@ -0,0 +1,13 @@
<?php
/* @var $factory \Illuminate\Database\Eloquent\Factory */
use App\Model;
use Faker\Generator as Faker;
$factory->define(App\Project::class, function (Faker $faker) {
return [
'title' => $faker->words(5, true),
'md' => $faker->paragraphs(10, true)
];
});

View File

@@ -0,0 +1,13 @@
<?php
/* @var $factory \Illuminate\Database\Eloquent\Factory */
use App\Model;
use Faker\Generator as Faker;
$factory->define(App\Setup::class, function (Faker $faker) {
return [
'title' => $faker->words(5, true),
'md' => $faker->paragraphs(10, true)
];
});