Please take a few seconds to provide us your contact Information
In Laravel You can write multiple conditions in a single WHERE clause to retrieve data based on the values in multiple columns.
Model::where(function ($q) { $q->where('is_visible_at ','<=',Carbon::now())->orWhere('is_visible_at ', null); })->get();