Answers for "call model to model laravel"

PHP
1

use model from variable laravel

$model_name = 'AppModelUser';
$model_name::where('id', $id)->first();

$model = $this->model_name;
$model::where('id', $id)->first();
Posted by: Guest on January-04-2021
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 model to model laravel"

Browse Popular Code Answers by Language