Answers for "laravel eloquent where value less then 5 and greter then 0"

PHP
0

laravel eloquent where value less then 5 and greter then 0

->where(function($q) {
                $q->where('recording_duration', '<=',5)
                    ->orWhere('recording_duration', '=',null);
            })
Posted by: Guest on June-07-2021

Browse Popular Code Answers by Language