Skip to content
Selahattin edited this page Oct 2, 2015 · 4 revisions

Bu paket, uri parametrelerinden Eloquent sorgusu oluşturur.

Örnek

/api/users?name=se*&age!=18&order_by=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)
                     ->where('name', 'like', 'se%')
                     ->orderBy('age', 'asc')
                     ->take(2)

olacak şekilde yorumlar.