qwildz / localized-eloquent-date by qwildz

Multi-language support for Laravel Eloquent's dates
14,078
4
1
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-04-23 03:02:57
Package Statistics
Total Downloads: 14,078
Monthly Downloads: 69
Daily Downloads: 1
Total Stars: 4
Total Watchers: 1
Total Forks: 0
Total Open Issues: 0

Localized Eloquent Date

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.

Installation

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',

Usage

Eloquent

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 {}

Ardent

Or if you use Ardent, extends Qwildz\LocalizedEloquentDate\LocalizedArdent class.

use Qwildz\LocalizedEloquentDate\LocalizedArdent as Model;

class MyModel extends Model {}

Other

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;

    ...
}