PHP code example of tapp / filament-value-range-filter

1. Go to this page and download the library: Download tapp/filament-value-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/ */

    

tapp / filament-value-range-filter example snippets


use Tapp\FilamentValueRangeFilter\Filters\ValueRangeFilter;

public static function table(Table $table): Table
{
    return $table
        //...
        ->filters([
            ValueRangeFilter::make('project_value')
                    ->currency(),
            ValueRangeFilter::make('estimated_hours'),
            // ...
        ])
}

ValueRangeFilter::make('project_value')
    ->currency(),

ValueRangeFilter::make('project_value')
    ->currency()
    ->currencyCode('EUR')
    ->locale('fr'),

ValueRangeFilter::make('project_value')
    ->currency()
    ->currencyInSmallestUnit(false),