public function run()
 {
     EmpPos::create(['postname' => 'Admin Assistant 1', 'dept_id' => '1']);
     EmpPos::create(['postname' => 'Admin Assistant 2', 'dept_id' => '1']);
     EmpPos::create(['postname' => 'Admin Assistant 3', 'dept_id' => '1']);
     EmpPos::create(['postname' => 'Accountant 1', 'dept_id' => '2']);
     EmpPos::create(['postname' => 'Accountant 2', 'dept_id' => '2']);
     EmpPos::create(['postname' => 'Bookkeeper', 'dept_id' => '2']);
     EmpPos::create(['postname' => 'Financial Analyst 1', 'dept_id' => '3']);
     EmpPos::create(['postname' => 'Financial Analyst 2', 'dept_id' => '3']);
 }