Package Data | |
---|---|
Maintainer Username: | qwildz |
Maintainer Contact: | resnarizki29@gmail.com (Muhammad Resna Rizki Pratama) |
Package Create Date: | 2014-08-29 |
Package Last Update: | 2015-02-18 |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-11 15:11:58 |
Package Statistics | |
---|---|
Total Downloads: | 14,267 |
Monthly Downloads: | 21 |
Daily Downloads: | 1 |
Total Stars: | 4 |
Total Watchers: | 1 |
Total Forks: | 0 |
Total Open Issues: | 0 |
This library extends Eloquent for multi-language date support. Replace the use of Carbon in Eloquent to Laravel Date with PHP Trait. And this library support Ardent too.
Add the package to your composer.json
and run composer update
.
{
"require": {
"qwildz/localized-eloquent-date": "dev-master"
}
}
Add the Laravel Date service provider in app/config/app.php
:
'Jenssegers\Date\DateServiceProvider',
And if you need, you can add an alias to use Laravel Date package:
'Date' => 'Jenssegers\Date\Date',
If your model use pure Eloquent, just change your model class to extends Qwildz\LocalizedEloquentDate\LocalizedEloquent
clas.
use Qwildz\LocalizedEloquentDate\LocalizedEloquent as Model;
class MyModel extends Model {}
Or if you use Ardent, extends Qwildz\LocalizedEloquentDate\LocalizedArdent
class.
use Qwildz\LocalizedEloquentDate\LocalizedArdent as Model;
class MyModel extends Model {}
You still can use the library if you don't use both above with using Qwildz\LocalizedEloquentDate\LocalizedDateTrait
trait.
use Qwildz\LocalizedEloquentDate\LocalizedDateTrait;
class MyModel extends Model {
use LocalizedDateTrait;
...
}