Answers for "call function in model laravel"

PHP
2

call model function in controller laravel

$model = new Model;
$model->func();
__________________________________
  or 
Model::func() // this function must be static to call it staticly ..
Posted by: Guest on June-22-2021

Code answers related to "call function in model laravel"

Browse Popular Code Answers by Language