1 | <?php |
||
2 | |||
3 | use Illuminate\Database\Seeder; |
||
4 | use App\Models\JobPoster; |
||
5 | |||
6 | class JobPosterSeeder extends Seeder //phpcs:ignore |
||
7 | { |
||
8 | /** |
||
9 | * Run the Job Poster table seeds. |
||
10 | * |
||
11 | * @return void |
||
12 | */ |
||
13 | public function run() |
||
14 | { |
||
15 | factory(JobPoster::class, 5)->create(); |
||
0 ignored issues
–
show
Bug
introduced
by
![]() |
|||
16 | } |
||
17 | } |
||
18 |