目次

15 laravel Eloquent

https://laravel.com/api/5.7/Illuminate/Database/Eloquent/Collection.html#method_all

find()

App\Model::find(1)

Modelのオブジェクト

get()

$test = Test::get()

Collectionクラス

first()

App\Model::where('id',1)→first()

Modelのオブジェクト

all()

App\Model::all()

Collectionクラス