라라벨 쿼리빌더 first()

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 참고[ | ]