PHP code example of emargareten / eloquent-filters
1. Go to this page and download the library: Download emargareten/eloquent-filters 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/ */
emargareten / eloquent-filters example snippets
php
/**
* Filter the query by posts that have at least the given amount of views.
*/
public function filterHasViews(Builder $query, string $operator, int $count): void
{
$query->where('views', $operator, $count);
}