PHP code example of rosamarsky / nova-range-filter
1. Go to this page and download the library: Download rosamarsky/nova-range-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/ */
rosamarsky / nova-range-filter example snippets
use Rosamarsky\RangeFilter\RangeFilter;
use App\Models\Invoice as InvoiceModel;
class Invoice extends Resource
{
public function filters(Request $request): array
{
return [
RangeFilter::make('Amount', 'amount', [
'min' => floor(InvoiceModel::query()->min()),
'max' => ceil(InvoiceModel::query()->max()),
'interval' => 10,
]),
];
}
}