PHP code example of koutech / class-base-filter
1. Go to this page and download the library: Download koutech/class-base-filter library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
koutech / class-base-filter example snippets
namespace App\Filter;
use Koutech\TopLayerForSpatieQueryBuilder\Filter;
use App\User;
class UserFilter extends Filter
{
public function model()
{
return User::class;
}
public function fields()
{
return ['name'];
}
}
$users = UserFilter::filter()->get();
public function eagerLoading()
{
return ['post'];
}
public function }