for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Scool\EnrollmentMobile\Database\Seeds;
use Illuminate\Database\Seeder;
use Scool\EnrollmentMobile\Models\Cycle;
use Scool\EnrollmentMobile\Models\Person;
class PeopleTableSeeder extends Seeder
{
/**
* Run the database seeds.
*
* @return void
*/
public function run()
factory(Person::class, 1)->create();
}