PHPackages                             geekstek/filament-temporal-picker - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. geekstek/filament-temporal-picker

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

geekstek/filament-temporal-picker
=================================

A Filament 4 plugin providing flexible temporal selection components including year, month, week, weekday, and day-of-month pickers with multi-select and range support.

v1.0.10(3mo ago)0151MITPHPPHP ^8.3

Since Dec 13Pushed 3mo agoCompare

[ Source](https://github.com/geekstek/filament-temporal-picker)[ Packagist](https://packagist.org/packages/geekstek/filament-temporal-picker)[ Docs](https://github.com/geekstek/filament-temporal-picker)[ RSS](/packages/geekstek-filament-temporal-picker/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependencies (16)Versions (12)Used By (0)

Filament Temporal Picker
========================

[](#filament-temporal-picker)

A Filament 4 plugin providing flexible temporal selection components including year, month, week, weekday, and day-of-month pickers with multi-select and range support.

Installation
------------

[](#installation)

```
composer require geekstek/filament-temporal-picker
```

Components
----------

[](#components)

### MonthPicker

[](#monthpicker)

Select a month with year navigation.

```
use Geekstek\TemporalPicker\Forms\Components\MonthPicker;

MonthPicker::make('billing_month')
    ->label('Billing Month')
    ->required()
    ->minDate('2024-01')
    ->maxDate('2025-12')
    ->showYear()
```

**Multiple Selection:**

```
MonthPicker::make('selected_months')
    ->label('Select Months')
    ->multiple()
    ->minSelections(1)
    ->maxSelections(6)
```

### YearPicker

[](#yearpicker)

Select a year from a range.

```
use Geekstek\TemporalPicker\Forms\Components\YearPicker;

YearPicker::make('fiscal_year')
    ->label('Fiscal Year')
    ->range(2020, 2030)
```

**Inline Grid Mode:**

```
YearPicker::make('year')
    ->label('Year')
    ->inline()
    ->gridColumns(4)
    ->range(2020, 2025)
```

### WeekPicker

[](#weekpicker)

Select a week using a calendar interface.

```
use Geekstek\TemporalPicker\Forms\Components\WeekPicker;

WeekPicker::make('work_week')
    ->label('Work Week')
    ->yearRange(2024, 2025)
    ->showWeekNumber()
    ->weekStartsOnMonday()
```

### WeekdayPicker

[](#weekdaypicker)

Select one or multiple days of the week.

```
use Geekstek\TemporalPicker\Forms\Components\WeekdayPicker;

WeekdayPicker::make('working_days')
    ->label('Working Days')
    ->multiple()
    ->shortLabels()
    ->disabledOptions(['saturday', 'sunday'])
```

**Integer Values:**

```
WeekdayPicker::make('working_days')
    ->asInteger() // Returns 1-7 instead of 'monday'-'sunday'
```

### DayOfMonthPicker

[](#dayofmonthpicker)

Select one or multiple days of the month (1-31).

```
use Geekstek\TemporalPicker\Forms\Components\DayOfMonthPicker;

DayOfMonthPicker::make('billing_days')
    ->label('Billing Days')
    ->multiple()
    ->dayRange(1, 28)
    ->disabledOptions([29, 30, 31])
```

**Dropdown Mode:**

```
DayOfMonthPicker::make('day')
    ->showCalendarGrid(false) // Use dropdown instead of grid
```

Common Options
--------------

[](#common-options)

All temporal pickers support:

- `multiple(bool)` - Enable multiple selection
- `minSelections(int)` - Minimum selections required (when multiple)
- `maxSelections(int)` - Maximum selections allowed (when multiple)
- `disabledOptions(array)` - Disable specific options
- `locale(string)` - Set component locale
- `format(string)` - Storage format
- `displayFormat(string)` - Display format
- `inline(bool)` - Show inline instead of dropdown
- `gridColumns(int)` - Number of grid columns
- `readOnly()` - Make component read-only
- `disabled()` - Disable the component

Configuration
-------------

[](#configuration)

Publish the config file:

```
php artisan vendor:publish --tag=temporal-picker-config
```

```
// config/temporal-picker.php
return [
    'locale' => null, // Defaults to app locale
    'first_day_of_week' => 1, // 0 = Sunday, 1 = Monday
    'weekday_format' => 'string', // 'string' or 'integer'
    'year_range' => [
        'min' => 1900,
        'max' => 2100,
    ],
    'formats' => [
        'year' => 'Y',
        'month' => 'Y-m',
        'week' => 'Y-\WW',
        'date' => 'Y-m-d',
    ],
];
```

Translations
------------

[](#translations)

Publish translations:

```
php artisan vendor:publish --tag=temporal-picker-translations
```

Available locales: `en`, `zh_CN`

License
-------

[](#license)

MIT License

###  Health Score

41

—

FairBetter than 87% of packages

Maintenance79

Regular maintenance activity

Popularity12

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity57

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~9 days

Recently: every ~23 days

Total

11

Last Release

109d ago

PHP version history (2 changes)v1.0.0PHP ^8.2

v1.0.1PHP ^8.3

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/55276269?v=4)[geekstek](/maintainers/geekstek)[@geekstek](https://github.com/geekstek)

---

Top Contributors

[![WillieOng-HK](https://avatars.githubusercontent.com/u/5966527?v=4)](https://github.com/WillieOng-HK "WillieOng-HK (13 commits)")

---

Tags

laraveldate pickerdatepickerfilamenttemporalyear-pickermonth-pickerweek-picker

###  Code Quality

TestsPest

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/geekstek-filament-temporal-picker/health.svg)

```
[![Health](https://phpackages.com/badges/geekstek-filament-temporal-picker/health.svg)](https://phpackages.com/packages/geekstek-filament-temporal-picker)
```

###  Alternatives

[rawilk/profile-filament-plugin

Profile &amp; MFA starter kit for filament.

3914.6k](/packages/rawilk-profile-filament-plugin)[stephenjude/filament-jetstream

A Laravel starter kit built with Filament inspired by Jetstream.

17760.2k3](/packages/stephenjude-filament-jetstream)[codewithdennis/filament-select-tree

The multi-level select field enables you to make single selections from a predefined list of options that are organized into multiple levels or depths.

329530.5k29](/packages/codewithdennis-filament-select-tree)[croustibat/filament-jobs-monitor

Background Jobs monitoring like Horizon for all drivers for FilamentPHP

274326.6k8](/packages/croustibat-filament-jobs-monitor)[stephenjude/filament-debugger

About

104162.2k2](/packages/stephenjude-filament-debugger)[dotswan/filament-map-picker

Easily pick and retrieve geo-coordinates using a map-based interface in your Filament applications.

128192.3k3](/packages/dotswan-filament-map-picker)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
