Answers for "laravel controller call this model laravel 8"

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 "laravel controller call this model laravel 8"

Browse Popular Code Answers by Language