📌  相关文章
📜  在控制器 laravel 中调用模型函数 - PHP 代码示例

📅  最后修改于: 2022-03-11 14:54:27.377000             🧑  作者: Mango

代码示例1
$model = new Model;
$model->func();
__________________________________
  or 
Model::func() // this function must be static to call it staticly ..