Answers for "laravel call the function of a model"

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
0

function inside model laravel

class Order extends Model {
    public static function myMethod() {
        return static::query()->where(...)->get(); // example
    }
}

(new Order())->myMethod();
Order::myMethod();
Posted by: Guest on November-12-2021

Code answers related to "laravel call the function of a model"

Browse Popular Code Answers by Language