fix CommentairesHasFactory

This commit is contained in:
Clément
2025-06-10 18:19:05 +02:00
parent 34f507f68e
commit 340365b258
2 changed files with 2 additions and 2 deletions

View File

@@ -0,0 +1,18 @@
<?php
namespace Database\Seeders;
use App\Models\Commentaire;
use Illuminate\Database\Console\Seeds\WithoutModelEvents;
use Illuminate\Database\Seeder;
class CommentaireSeeder extends Seeder
{
/**
* Run the database seeds.
*/
public function run(): void
{
Commentaire::factory(10)->create();
}
}