BDD: création initiale

This commit is contained in:
2021-04-27 18:55:19 +02:00
parent 3273929ca4
commit 5ad83f8744
5 changed files with 174 additions and 0 deletions

View File

@ -0,0 +1,28 @@
<?php
namespace Database\Factories;
use App\Models\Menu;
use Illuminate\Database\Eloquent\Factories\Factory;
class MenuFactory extends Factory
{
/**
* The name of the factory's corresponding model.
*
* @var string
*/
protected $model = Menu::class;
/**
* Define the model's default state.
*
* @return array
*/
public function definition()
{
return [
//
];
}
}