Some checks failed
continuous-integration/drone/push Build is failing
- Complete GGZ Ecademy Laravel backend application - RESTful API for learning products, members, filters - Authentication and authorization system - Database migrations and seeders - Custom CRUD generator commands - Email notification system - Integration with frontend applications
13 lines
238 B
PHP
13 lines
238 B
PHP
<?php
|
|
|
|
/** @var \Illuminate\Database\Eloquent\Factory $factory */
|
|
|
|
use App\Repositories\LearningProduct;
|
|
use Faker\Generator as Faker;
|
|
|
|
$factory->define(LearningProduct::class, function (Faker $faker) {
|
|
return [
|
|
//
|
|
];
|
|
});
|