Laravelで条件付きSELECT文を使用する方法 where条件を使用する方法:$results = DB::table('テーブル名') ->select('列名') ->where('条件カラム', '条件値') ->get();>>More