You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
xshop/database/seeders/PostSeeder.php

20 lines
323 B
PHTML

5 months ago
<?php
namespace Database\Seeders;
use App\Models\Post;
5 months ago
use Illuminate\Database\Console\Seeds\WithoutModelEvents;
use Illuminate\Database\Seeder;
class PostSeeder extends Seeder
{
/**
* Run the database seeds.
*/
public function run(): void
{
//
Post::factory(55)->create();
5 months ago
}
}