PHP code example of aubinlrx / laravelrepositories
1. Go to this page and download the library: Download aubinlrx/laravelrepositories 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/ */
aubinlrx / laravelrepositories example snippets
use AubinLrx\LaravelRepositories\Repository;
use AubinLrx\LaravelRepositories\Traits\FilterableTrait;
class BookRepository extends Repository {
use FilterableTrait;
/**
* The fields that are filterable
* @var array
*/
protected $filterable = ['author_id', 'date_range'];
public function getAllWithFilter() {
return $this->applyFilterToQuery( $this->model->query() )->all();
}
public function filterByDateRange($query, $value) {
return $query->whereBetween('date', $value);
}
public function filterBy($field, $value) {
$this->addFilter($field, $value);
return $this;
}
}
class BookController extends Controller {
public function __construct(BookRepository $books)
{
$this->books = $books;
}
public function index(Request $request)
{
$books = $this->books->filterBy('date_range', $request->only(['str_date', 'end_date']))
->filterBy('author_id', $request->only('author_id'))
->getAllWithFilter();
return view('books.index', compact('books'));
}
}
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.