我有一個查詢,我希望得到price_types.name
,但沒有返回:laravel連接查詢不工作
$projects = Project::with('projectsTask')
->select('projects.*',
'price_types.name as name_type'
)
->where('client_id', $client->id)
->join('price_types', 'tasks.type_list', '=', 'price_types.id')
->orderBy('id')
->get();
這裏的圖像查詢retrievng This on picture "type_list" must be string text
也許有人可以幫助我。
非常感謝!
你想實現什麼? type_list是數據庫中的整數嗎? –
是的,「tasks.type_list」是一個整數,我wonna採取「price_types.name」是一個字符串:) –