各位早安, 我正在搜尋如何在我的播種檔案中呼叫控制器的函數。
帳號控制器
#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); }
如同@Pippo所指出的在評論中:
所以;
而不是:❌
使用這個:✅
參考文獻: