PHP code example of robertboes / nova-slider-field

1. Go to this page and download the library: Download robertboes/nova-slider-field 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/ */

    

robertboes / nova-slider-field example snippets


NovaSliderField::make('Percentage');

NovaSliderField::make('Distance')->min(50);

NovaSliderField::make('Distance')->max(200);

NovaSliderField::make('Percentage')->interval(5);

NovaSliderField::make('Percentage')->withoutTooltip();

NovaSliderField::make('Percentage')->tooltipOnHover();

NovaSliderField::make('Price')->formatter("€ {value}");