'How to add DATE_ADD in query on laravel

I have such a query

SELECT DATE_ADD(do, INTERVAL 1 DAY)  AS od from termin

and I want to convert them to query in Eloquent

$tab = DB::table('termin')->get 

how to do it Thank you for your help



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source