Files
Test-Laravel-Migrations/database/factories/ProductFactory.php
T

22 lines
368 B
PHP
Raw Normal View History

2021-11-09 10:29:27 +02:00
<?php
namespace Database\Factories;
use Illuminate\Database\Eloquent\Factories\Factory;
class ProductFactory extends Factory
{
/**
* Define the model's default state.
*
* @return array
*/
public function definition()
{
return [
'category_id' => 1,
'name' => $this->faker->text(20),
];
}
}