Fresh code drop

Query dates without raw SQL

PHP

Original CodeSnap example inspired by Laravel News. Source: https://laravel-news.com/eloquent-tips-tricks

PHP
CodeSnap // free canvas

Query dates without raw SQL

<?php

$orders = Order::query()
    ->whereDate('created_at', today())
    ->whereYear('paid_at', now()->year)
    ->get();

// Further reading: https://laravel-news.com/eloquent-tips-tricks

Turn your code into a post.Five templates are free—no account needed.

Remix this snap