skip to Main Content

has and doesnotHave methods not exist on DB in Laravel

I need help with the DB query builder. I tried to check if such a relationship already exists but got an error saying Call to undefined method IlluminateDatabaseQueryBuilder::has() $startDate = Carbon::today()->format('Y-m-dT00:00:00'); $endDate = Carbon::today()->format('Y-m-dT23:59:59'); if (request('start_date') && request('end_date')) { $startDate…

VIEW QUESTION
Back To Top
Search