2017 © Pedro Peláez
 

library laravel-jalali

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

image

kakajan/laravel-jalali

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

  • Saturday, October 28, 2017
  • by usher
  • Repository
  • 1 Watchers
  • 2 Stars
  • 23 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 1 Forks
  • 0 Open issues
  • 2 Versions
  • 10 % Grown

The README.md

kakajan/laravel-jalali

npm Dockbit Chrome Web Store Jenkins tests, (*1)

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

, (*3)

Installation

In the require key of composer.json file add the following, (*4)

    "kakajan/laravel-jalali": "1.0"

Run the Composer update comand, (*5)

$ composer update

Or just run command, (*6)

$ composer require kakajan/laravel-jalali

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

    'providers' => array(

    .
    .
    .
    jDate\Jalali\JalaliServiceProvider::class,

    ),

, (*8)

Basic Usage

Examples

Some Examples, (*9)

// 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., (*10)

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., (*11)

License

The Versions

28/10 2017

dev-master

9999999-dev

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

  Sources   Download

MIT

The Requires

  • php >=5.3.0

 

by UsherQelich Sayyedmuhammadi

laravel date datetime jalali

26/10 2017

1.0

1.0.0.0

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

  Sources   Download

MIT

The Requires

  • php >=5.3.0

 

by UsherQelich Sayyedmuhammadi

laravel date datetime jalali