Hi Team, In below query i am getting notice Notice: Cannot use a scalar value as an array
$data = table1::query()
->columns("table1.id,apikey,table2.title as sTitle, table3.title as aTitle")
->leftjoin("table3", "table1.id=table3.channel_id")
->leftjoin("table2", "table1.id=table2.channel_id")
->where("table1.id= " . $Id ." ")
->execute();
could you please help me here?
Thanks, Amol