-
Notifications
You must be signed in to change notification settings - Fork 66
Nedir
Selahattin edited this page Sep 30, 2015
·
4 revisions
Bu paket, uri parametrelerinden Eloquent sorgusu oluşturur.
/api/users?age!=18&order=age,asc&limit=2&columns=name,age,city_id&includes=city
adresine yapılan sorguyu
Users::with(['city'])->select(['name', 'age', 'city_id'])->where('age', '!=', 18)->orderBy('age', 'asc')->take(2) olacak şekilde yorumlar.