skip to Main Content

Laravel filled() method seemingly not working

I am working on a function to update profile details, in my ProfileController.php. I am validating the request, making sure nothing is required, however when I use the filled() function: if($request->filled('username')){ $user->username = $request['username']; } if($request->filled('email')){ $user->email = $request['email']; }…

VIEW QUESTION

Flutter: _TypeError

I'm trying to get datas from api and add them a list. But at this moment, I see datas i got but I can't get it out of the function. What should i do? function List<dynamic> xxx = []; @override…

VIEW QUESTION
Back To Top
Search