LaravelPackages.net
Acme Inc.
Toggle sidebar
kakajan/laravel-jalali

This Package helps developers to easily work with Jalali (Shamsi or Iranian) dates in Laravel 5.5+ applications

185
5
1.0
About kakajan/laravel-jalali

kakajan/laravel-jalali is a Laravel package for this package helps developers to easily work with jalali (shamsi or iranian) dates in laravel 5.5+ applications. It currently has 5 GitHub stars and 185 downloads on Packagist (latest version 1.0). Install it with composer require kakajan/laravel-jalali. Discover more Laravel packages by kakajan or browse all Laravel packages to compare alternatives.

Last updated

kakajan/laravel-jalali

npm Dockbit Chrome Web Store Jenkins tests

This Package helps developers to easily work with Jalali (Shamsi or Iranian) dates in Laravel 5.5+ applications.

Installation

In the require key of composer.json file add the following

    "kakajan/laravel-jalali": "1.0"

Run the Composer update comand

$ composer update

Or just run command

$ composer require kakajan/laravel-jalali

In your config/app.php add 'jDate\Jalali\JalaliServiceProvider::class,' to the end of the $providers array

    'providers' => array(
    
    .
    .
    .
    jDate\Jalali\JalaliServiceProvider::class,

    ),

Basic Usage

Examples

Some Examples

// default timestamp is now
$date = jDate::forge();

// pass timestamps
$date = jDate::forge(1333857600);

// pass strings to make timestamps
$date = jDate::forge('last sunday');

// get the timestamp
$date = jDate::forge('last sunday')->time(); // 1333857600

// format the timestamp
$date = jDate::forge('last sunday')->format('%B %d، %Y'); // دی 02، 1391

// get a predefined format
$date = jDate::forge('last sunday')->format('datetime'); // 1391-10-02 00:00:00
$date = jDate::forge('last sunday')->format('date'); // 1391-10-02
$date = jDate::forge('last sunday')->format('time'); // 00:00:00

// amend the timestamp value, relative to existing value
$date = jDate::forge('2012-10-12')->reforge('+ 3 days')->format('date'); // 1391-07-24

// get relative 'ago' format
$date = jDate::forge('now - 10 minutes')->ago(); // ۱۰ دقیقه پیش

Formatting

For help in building your formats, checkout the PHP strftime() docs.

Notes

The class relies on strtotime() to make sense of your strings, and strftime() to make the format changes. Just always check the time() output to see if you get false timestamps... which means the class couldn't understand what you were telling it.

License

Comments