Found out, it's $query = DB::table('Users')->where('Name', Auth::user()->Name)->first(); $query->Column
You do know;
DB::table('Users')->where('Name', Auth::user()->Name)->first()
is the same as;
Auth::user();
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community