Laravel Query builder not fetch any response but same query work fine in MySql – Phpmyadmin
I am trying to Run This Query from laravel Query Builder But it returns an empty response but when I get the query from the query log and run this in phpMyadmin it response with data. Project::join('project_assignation','projects.id','project_assignation.project_id') ->join('users','project_assignation.employee_id', 'users.id') ->join('eods',…