Monday, May 22, 2017

How to convert this Raw query into Laravel Eloquent way?

This is my raw query.

DB::raw("SELECT * FROM tble WHERE status=1 and now() BETWEEN start_time and end_time ORDER BY id DESC LIMIT 1")

How to convert this into Laravel Eloquent ?



via Khirad Banu

Advertisement