Skip to content

PHP code snippet – How to get today week month ad year data in eloquent?

Stats::where('created_at', '>', Carbon::now()->startOfWeek())
     ->where('created_at', '<', Carbon::now()->endOfWeek())
     ->get();
See also  TypeScript code snippet - How to check listening ports on a server?

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.