Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Laravel 4に次のステートメントがあります。
$prepayment = Prepayment::where('hash', '=', $custom)->take(1)->get();
しかし、これはオブジェクトの配列を返します。私が検索したハッシュの結果は 1 つしかないため、必要なオブジェクトは 1 つだけです。
オブジェクトの配列ではなく、1 つのオブジェクトのみを取得する方法は?
ありがとう!
get() メソッドの代わりに first() メソッドを使用する
$prepayment = Prepayment::where('hash', '=', $custom)->first();