finish basic crud api
This commit is contained in:
13
database/factories/EventCategoryFactory.php
Normal file
13
database/factories/EventCategoryFactory.php
Normal file
@@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
/** @var \Illuminate\Database\Eloquent\Factory $factory */
|
||||
|
||||
use App\Models\EventCategory;
|
||||
use Faker\Generator as Faker;
|
||||
|
||||
$factory->define(EventCategory::class, function (Faker $faker) {
|
||||
return [
|
||||
'name' => $faker->words(3, [false]),
|
||||
'description' => $faker->words(rand(10, 30), [false]),
|
||||
];
|
||||
});
|
||||
Reference in New Issue
Block a user