各位早安, 我正在搜尋如何在我的播種檔案中呼叫控制器的函數。
帳號控制器
#public function createCompte() { //generate an account number return $numcompte; } }
播種機
#public function run(){ $compteController = new CompteController; $numcompte = $this->compteController->createCompte(); $data_client = [ //other data generate with faker 'num_cmpte_client' => $numcompte , ]; $id_client = $this->db->table('client')->insert($tab); }
P粉4019012662023-09-09 10:16:14
所以;
而不是:❌
$numcompte = $this->compteController->createCompte();
使用這個:✅
$numcompte = $compteController->createCompte();
參考文獻: