Laravel Query in if else converting to common query
this is my code I want to convert this query in to a common query if ($limit == 0) { $response = WebhookErrorNotification::where('is_error', true)->orderByDesc('id')->get(); } else { $response = WebhookErrorNotification::where('is_error', true)->orderByDesc('id')->limit($limit)->get(); }