1 개요[ | ]
- 라라벨 쿼리빌더 first()
PHP
Copy
$user = DB::table('users')->where('name', 'John')->first();
echo $user->name;
(web) view 전달
PHP
Copy
$user = DB::table('users')->where('name', 'John')->first();
return view('userview', ['user'=>$user]);
(api) json 응답
PHP
Copy
$user = DB::table('users')->where('name', 'John')->first();
return response()->json($user);
toArray()
PHP
Copy
$group = collect(DB::table('users')->where('name', 'John')->first())->toArray();
2 같이 보기[ | ]
3 참고[ | ]
편집자 Jmnote Jmnote bot
로그인하시면 댓글을 쓸 수 있습니다.