PHPackages                             ariaieboy/filament-jalali-datetime - 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. ariaieboy/filament-jalali-datetime

Abandoned → [ariaieboy/filament-jalali](/?search=ariaieboy%2Ffilament-jalali)ArchivedLibrary[Utility &amp; Helpers](/categories/utility)

ariaieboy/filament-jalali-datetime
==================================

a Jalali DateTime Column for filament table builder

1.4.2(1y ago)1711.3k—0%2MITPHPPHP ~8.0.0|~8.1.0|~8.2.0|~8.3|~8.4

Since Jun 5Pushed 1y ago1 watchersCompare

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

READMEChangelog (10)Dependencies (11)Versions (12)Used By (2)

This package is no longer maintained please upgrade to [ariaieboy/filament-jalali](https://github.com/ariaieboy/filament-jalali)
================================================================================================================================

[](#this-package-is-no-longer-maintained-please-upgrade-to-ariaieboyfilament-jalali)

[![Ariaieboy Jalali DateTime](https://camo.githubusercontent.com/ad1acb90b4ead21fb02f65e812329e8fdae5b0e8e0f93cce46ca7a187fad3144/68747470733a2f2f707265766965772e647261676f6e2d636f64652e70726f2f417269616965626f792f4a616c616c692d4461746554696d652e7376673f6272616e643d6c61726176656c)](https://camo.githubusercontent.com/ad1acb90b4ead21fb02f65e812329e8fdae5b0e8e0f93cce46ca7a187fad3144/68747470733a2f2f707265766965772e647261676f6e2d636f64652e70726f2f417269616965626f792f4a616c616c692d4461746554696d652e7376673f6272616e643d6c61726176656c)

a Jalali DateTime Column for filament table builder
===================================================

[](#a-jalali-datetime-column-for-filament-table-builder)

[![Latest Version on Packagist](https://camo.githubusercontent.com/1bc76ae7ff955ec57f9847abbcc508b2f6c48af541b6931a948c53faa40730ae/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f617269616965626f792f66696c616d656e742d6a616c616c692d6461746574696d652e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/ariaieboy/filament-jalali-datetime)[![GitHub Actions Workflow Status](https://camo.githubusercontent.com/fe2a7edbb868457056bfd59cec4acc2feae9023d20abc5ed2888484d81197c8c/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f617269616965626f792f66696c616d656e742d6a616c616c692d6461746574696d652f7068702d63732d66697865722e796d6c3f6c6162656c3d7374796c696e67)](https://camo.githubusercontent.com/fe2a7edbb868457056bfd59cec4acc2feae9023d20abc5ed2888484d81197c8c/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f617269616965626f792f66696c616d656e742d6a616c616c692d6461746574696d652f7068702d63732d66697865722e796d6c3f6c6162656c3d7374796c696e67)[![Total Downloads](https://camo.githubusercontent.com/a7942480c6a24a8c51ba2b0396c97b049af701e8dc869956ed5c0e47fe4e6cdf/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f617269616965626f792f66696c616d656e742d6a616c616c692d6461746574696d652e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/ariaieboy/filament-jalali-datetime)

This package will add a Jalali DateTime Column for filament table builder

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

[](#installation)

You can install the package via composer:

```
composer require ariaieboy/filament-jalali-datetime
```

You can publish the config file with:

```
php artisan vendor:publish --tag="filament-jalali-datetime-config"
```

This is the contents of the published config file:

```
// config for Ariaieboy/FilamentJalaliDatetime
return [
    'date_format'=>'Y/m/d',
    'date_time_format'=>'Y/m/d H:i:s',
];
```

Usage
-----

[](#usage)

```
//instead of this :
use Filament\Tables\Columns\TextColumn;

TextColumn::make('created_at')->dateTime()

//Since v1.2 you can use the code below to show Jalali date and dateTime

TextColumn::make('created_at')->jalaliDate();
TextColumn::make('created_at')->jalaliDateTime();

//you can use the code below for jalali datetime
use Ariaieboy\FilamentJalaliDatetime\JalaliDateTimeColumn;

JalaliDateTimeColumn::make('created_at')->dateTime() // it will show the date like this : 1401/03/15 20:18:52
//or
JalaliDateTimeColumn::make('created_at')->date() // it will show the date like this : 1401/03/15
```

Testing
-------

[](#testing)

```
composer test
```

Changelog
---------

[](#changelog)

Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](https://github.com/spatie/.github/blob/main/CONTRIBUTING.md) for details.

Security Vulnerabilities
------------------------

[](#security-vulnerabilities)

Please review [our security policy](../../security/policy) on how to report security vulnerabilities.

Credits
-------

[](#credits)

- [AriaieBOY](https://github.com/ariaieboy)
- [All Contributors](../../contributors)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

42

—

FairBetter than 90% of packages

Maintenance37

Infrequent updates — may be unmaintained

Popularity31

Limited adoption so far

Community13

Small or concentrated contributor base

Maturity72

Established project with proven stability

 Bus Factor1

Top contributor holds 94.7% 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 ~86 days

Total

11

Last Release

571d ago

PHP version history (5 changes)1.0.0PHP ^8.1

1.0.1PHP ~8.0|~8.1

1.1.0PHP ~8.0.0|~8.1.0|~8.2.0

1.2.2PHP ~8.0.0|~8.1.0|~8.2.0|~8.3

1.4.2PHP ~8.0.0|~8.1.0|~8.2.0|~8.3|~8.4

### Community

Maintainers

![](https://www.gravatar.com/avatar/e89700c75410a20d43857b37107b59d3dffe75166434efa9bed47668723fcdb9?d=identicon)[ariaieboy](/maintainers/ariaieboy)

---

Top Contributors

[![ariaieboy](https://avatars.githubusercontent.com/u/15873972?v=4)](https://github.com/ariaieboy "ariaieboy (36 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (2 commits)")

---

Tags

filamentlaravellivewirelaravelariaieboyfilament-jalali-datetime

###  Code Quality

TestsPest

Code StylePHP CS Fixer

### Embed Badge

![Health badge](/badges/ariaieboy-filament-jalali-datetime/health.svg)

```
[![Health](https://phpackages.com/badges/ariaieboy-filament-jalali-datetime/health.svg)](https://phpackages.com/packages/ariaieboy-filament-jalali-datetime)
```

###  Alternatives

[guava/calendar

Adds support for vkurko/calendar to Filament PHP.

298241.0k3](/packages/guava-calendar)[pboivin/filament-peek

Full-screen page preview modal for Filament

253319.6k12](/packages/pboivin-filament-peek)[dotswan/filament-map-picker

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

124139.3k2](/packages/dotswan-filament-map-picker)[creagia/filament-code-field

A Filamentphp input field to edit or view code data.

58289.3k3](/packages/creagia-filament-code-field)[swisnl/filament-backgrounds

Beautiful backgrounds for Filament auth pages

54149.2k6](/packages/swisnl-filament-backgrounds)[hydrat/filament-table-layout-toggle

Filament plugin adding a toggle button to tables, allowing user to switch between Grid and Table layouts.

6292.3k1](/packages/hydrat-filament-table-layout-toggle)

PHPackages © 2026

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