0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

LaravelのEloquentによる検索【個人的なお勉強アウトプット】

Last updated at Posted at 2022-04-06

参考図書

whereによる検索

IDを指定しての検索はfindでできた。ID以外の検索はwhereメソッドを使う。

複数のレコードを得る
$変数 = モデルクラス::where(フィールド名,値)->get();

最初のレコードだけを得る
$変数 = モデルクラス::where(フィールド名,値)->first();

DBクラスのビルダとは少し違い、Eloquentのwhereはビルダクラスのインスタンスを返す。
DBクラスではIlluminate\Database\Query名前空間にあるBuilderクラスのインスタンスが返された。
モデルクラスのwhereではIlluminate\Database\Eloquent名前空間にあるBuilderクラスのインスタンスが返される。
まあほとんど同じとのこと。

実例

nameを検索する

app/Http/Controllers/PersonController.php
public function search(Request $request){
$item = Person::where('name', $request->input)->first;
$param = ['input' => $request->input, 'item' => $item];
return view('person.find', $param);
}

名前をフィールドから検索すると表示されるスクリプト

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?