Solve your laravel problems.
How to query like this SELECT * FROM invoice_client WHERE date_sending < DATE_ADD(NOW(), INTERVAL -90 DAY) and date_sending != '0000-00-00' and approve != '1' in laravel version ?
SELECT * FROM invoice_client WHERE date_sending < DATE_ADD(NOW(), INTERVAL -90 DAY) and date_sending != '0000-00-00' and approve != '1'
Thx Before