Slider
CommunitySlide into Precision – Customizable Control at Your Fingertips.
Author:
Rupadana
Package health
BetaAutomated checks of this plugin's Composer package
13 checks
-
Warning:
Current Laravel version supported
—
Package does not co-install with current Laravel
13.0; the newest co-installable line is12.0, which still receives active support but is not the current stable. -
Passed:
Current PHP version supported
—
Constraint
^8.1supports current PHP8.5. - Skipped: Current Symfony version supported
- Passed: Abandoned or archived — No consulted source marks the package abandoned (packagist, github).
- Warning: Commit and release recency — Low activity: last commit 355 days ago; last release 502 days ago.
-
Passed:
composer.lock not committed by library
—
composer.lockis absent from the released dist archive. - Passed: Dist archive is lean
- Failed: GitHub Actions pinned to SHA — View details on Plumb
- Passed: Open security advisories
- Failed: Dependabot PR responsiveness — Stale Dependabot PRs: oldest general PR is 278 days old. View details on Plumb
- Warning: Dependabot or Renovate configured — Updater does not cover the JavaScript ecosystem, which has a committed lockfile.
-
Failed:
Dependency update cooldown configured
—
No cooldown configured in
.github/dependabot.yml. View details on Plumb - Passed: Provides a security policy
filament/
namespace. Review the source and install at your own risk. Found
malware or an unresolved security issue the author won't
address?
Report it
.
Documentation
This component allows users to easily select a value or range of values by dragging a slider handle. It's ideal for settings where precise input is required, such as adjusting numerical values, controlling volume, or setting dates.
#Installation
You can install the package via composer:
composer require rupadana/filament-slider
#Usage
#Simple Input Slider
InputSliderGroup::make()
->sliders([
InputSlider::make('min')
])
->label('Limit')
#Multiple Input
InputSliderGroup::make()
->sliders([
InputSlider::make('min')
InputSlider::make('max')
])
->label('Limit')
#Connect
InputSliderGroup::make()
->sliders([
InputSlider::make('min')
InputSlider::make('max')
])
->connect([
false,
true,
false
])
->label('Limit')
#Maximum & Minimum
InputSliderGroup::make()
->sliders([
InputSlider::make('min')
InputSlider::make('max')
])
->connect([
false,
true,
false
])
->max(100)
->min(0)
->label('Limit')
#Complete
InputSliderGroup::make()
->sliders([
InputSlider::make('min'),
InputSlider::make('max')->default(50),
])
->connect([
true,
false,
true
]) // array length must be sliders length + 1
->range([
"min" => 30,
"max" => 100
])
->step(10)
->behaviour([
InputSliderBehaviour::DRAG,
InputSliderBehaviour::TAP
])
->enableTooltips()
->label("Limit")
#Changelog
Please see CHANGELOG for more information on what has changed recently.
#Contributing
Please see CONTRIBUTING for details.
#Credits
#License
The MIT License (MIT). Please see License File for more information.
The author
From the same author
Remote Database Backup
Your Data, Securely Backed Up Anytime, Anywhere
Author:
Rupadana
API Service
A simple API service for supporting Filament resources.
Author:
Rupadana
Swiper
The Most Modern Mobile Touch Slider now on Filamentphp
Author:
Rupadana
Announce
An easy way to shout your exceptional offerings to the potential users
Author:
Rupadana
Featured Plugins
A selection of plugins curated by the Filament team
Blueprint
Filament Blueprint is a premium Laravel Boost extension that helps AI agents produce accurate, detailed implementation plans and security reports for Filament apps.
Filament
Custom Dashboards
Let your users build and share their own dashboards with a drag-and-drop interface. Define your data sources in PHP and let them do the rest.
Filament
Custom Fields
Eliminate custom field migrations forever. Let your users create and manage form fields directly in Filament admin panels with 20+ built-in field types, validation, and zero database changes.
Relaticle