@php $remainders = App\Models\EmailNotificationReminder::where('user_id', auth()->id())->where('is_sent', 1)->orderBy("reminder_at","DESC")->get(); $all_count = $remainders->count(); $new_remainders = $remainders->where('user_notified',0)->pluck('id'); $count = count($new_remainders); $remainders = $remainders->take(10); @endphp