laravel eloquent where value less then 5 and greter then 0 code example
Example: laravel eloquent where value less then 5 and greter then 0
->where(function($q) {
$q->where('recording_duration', '<=',5)
->orWhere('recording_duration', '=',null);
})