-
Notifications
You must be signed in to change notification settings - Fork 66
Kurulum
Selahattin edited this page Feb 24, 2016
·
8 revisions
İlk olarak composer.json dosyasına şu satırı ekleyin.
"require": {
"unlu/laravel-api-query-builder": "~1.0"
}
Daha sonra terminalden şu komutu çalıştırın.
composer update
config/app.php içerisinde yer alan providers dizisine şu satırı ekleyin
'Unlu\Laravel\Api\ApiQueryBuilderServiceProvider',
bootstrap/app.php dosyasına aşağıdaki satırları ekleyin:
$app->withFacades();
$app->withEloquent();
$app->register(Unlu\Laravel\Api\LumenServiceProvider::class);
Lumen kullanıyorsanız bu adımı atlayabilirsiniz
Ön tanımlı limit, orderBy ve exludedParameters parametrelerini değiştirmek isterseniz komut satırında şu satırı çalıştırın:
php artisan vendor:publish --provider="Unlu\Laravel\Api\ApiQueryBuilderServiceProvider"