How to create a query that brings all the values from a column and that has another column equal to the a value (the auth user)
I tryed
$user = Auth::user()->id;
$taskDistArray = DB::table('user_task')->select(DB::raw('task_id'))->where('user_id','$user')->get()->toArray();
but it doesn't show anything when i dd($taskDistArray)
$taskDistArray = DB::table('user_task')->select('task_id')->where('user_id',$user)->get();
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community