beaumind/jdate is a Laravel package for a simple laravel wrapper for jdate functions.
It currently has 2 GitHub stars and 69 downloads on Packagist (latest version 1.0.2).
Install it with composer require beaumind/jdate.
Discover more Laravel packages by beaumind
or browse all Laravel packages to compare alternatives.
Last updated
>=5Run 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
]