ariaieboy / filament-jalali-datetime
a Jalali DateTime Column for filament table builder
Installs: 9 195
Dependents: 3
Suggesters: 0
Security: 0
Stars: 17
Watchers: 1
Forks: 1
Open Issues: 0
Requires
- php: ~8.0.0|~8.1.0|~8.2.0|~8.3|~8.4
- ariaieboy/jalali: ^1.0.1
- filament/filament: ^2.12|^3
- illuminate/contracts: ^8.0|^9.0|^10.0|^11
- spatie/laravel-package-tools: ^1.9.2
Requires (Dev)
- friendsofphp/php-cs-fixer: ^3.8
- nunomaduro/collision: ^6.0
- orchestra/testbench: ^7.0
- pestphp/pest: ^1.21
- pestphp/pest-plugin-laravel: ^1.1
- phpunit/phpunit: ^9.5
- spatie/laravel-ray: ^1.26
README
a Jalali DateTime Column for filament table builder
This package will add a Jalali DateTime Column for filament table builder
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
//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
composer test
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security Vulnerabilities
Please review our security policy on how to report security vulnerabilities.
Credits
License
The MIT License (MIT). Please see License File for more information.