mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/tickme.git
synced 2026-08-19 04:23:56 +00:00
17 lines
249 B
PHP
17 lines
249 B
PHP
<?php
|
|
|
|
use Illuminate\Database\Seeder;
|
|
|
|
class TasksTableSeeder extends Seeder
|
|
{
|
|
/**
|
|
* Run the database seeds.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function run()
|
|
{
|
|
factory(App\Models\Task::class, 30)->create();
|
|
}
|
|
}
|