Mysql
 sql >> Database >  >> RDS >> Mysql

Recupera tutte le righe del mese scorso (Laravel + Eloquent)

Una soluzione più chiara per il tuo problema:

$revenueMonth = Callback::whereMonth(
    'created_at', '=', Carbon::now()->subMonth()->month
);