TL;DR: Eloquent models are updating, if I dump the object the attributes show correctly, but when I...
Alright, I will do my best to describe my issue here. I have a route Route::get('/did/{search?}','DI...
I'm new to Laravel, and I'm loving the framework more and more everyday. I've only had one issue, an...
Not sure if I understand you correctly or not. But you don't have to have the query fields in the se...
Look for the input, if not there use the user's. if(isset($request->input('club')){ $ClubID...
Also, have you done an echo on Auth::user()->club_id to ensure that the logged in user actually h...
You could just create the user in your controller $newuser = User::create([ 'name' => $request...
Both @shinsenter and @Cyril make valid points. If for some reason you should ever have to change the...
The Laravel portal for problem solving, knowledge sharing and community building.