0
0

More than 1 year has passed since last update.

LaravelのEloquentでwhereを使う方法

Posted at

whereとメソッドは

Laravelにおけるwhereメソッドとは、Eloquentクエリビルダを使って、データベース検索を行うものである。
作成したModelからwhereメソッドを使うことで、そのModelから検索することができる。

文法

第一引数:カラム名
第二引数:比較演算子
第三引数:カラムの値

例:

index.php
Article::where('title', '=', 'test')->first();
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