/jdate

A simple Laravel Wrapper for the jdate functions.

Primary LanguagePHP

laravel jdate

  • A simple Laravel Wrapper for Alireza-h jdate class.
  • This package compatible with Laravel >=5

Installation

Run the Composer update comand

$ composer require beaumind/jdate

In your config/app.php add 'Beaumind\Jdate\JDateServiceProvider' to the end of the $providers array

'providers' => [

    Illuminate\Foundation\Providers\ArtisanServiceProvider::class,
    Illuminate\Auth\AuthServiceProvider::class,
    ...
    Beaumind\Jdate\JDateServiceProvider::class,

],


'alias' => [
    ...
    'jDate' => Beaumind\Jdate\Facades\JDate::class
]