Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/approached/laravel-date-international
Date string transformator for your language
https://github.com/approached/laravel-date-international
Last synced: 12 days ago
JSON representation
Date string transformator for your language
- Host: GitHub
- URL: https://github.com/approached/laravel-date-international
- Owner: approached
- License: mit
- Created: 2015-07-10T11:36:42.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2022-05-08T16:41:50.000Z (over 2 years ago)
- Last Synced: 2024-09-23T02:46:14.281Z (about 2 months ago)
- Language: PHP
- Homepage:
- Size: 24.4 KB
- Stars: 11
- Watchers: 3
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Laravel date international
[![License](https://poser.pugx.org/approached/laravel-date-international/license)](https://packagist.org/packages/approached/laravel-date-international)
[![Latest Stable Version](https://poser.pugx.org/approached/laravel-date-international/v/stable)](https://packagist.org/packages/approached/laravel-date-international)
[![Total Downloads](https://poser.pugx.org/approached/laravel-date-international/downloads)](https://packagist.org/packages/approached/laravel-date-international)With this package you can get easy formated date string in your language.
## Demo
**German:**
```
Date:
20.08.15
20.08.2015
20. August 2015
Donnerstag, 20. August 2015Time:
13:21
13:21:54 (with seconds)Full:
20.08.15 13:21
20.08.2015 13:21
20. August 2015 13:21
Donnerstag, 20. August 2015 13:21
```**Italy:**
```
Date:
20/08/15
20/ago/2015
20 agosto 2015
giovedì 20 agosto 2015Time:
13:26
13:26:36 (with seconds)Full:
20/08/15 13:26
20/ago/2015 13:26
20 agosto 2015 13:26
giovedì 20 agosto 2015 13:26:36 (with seconds)
```**English:**
```
Date:
8/20/15
Aug 20, 2015
August 20, 2015
Thursday, August 20, 2015Time:
1:25 PM
1:25:28 PM (with seconds)Full:
8/20/15, 1:25 PM
Aug 20, 2015, 1:25 PM
August 20, 2015 at 1:25 PM
Thursday, August 20, 2015 at 1:25:28 PM (with seconds)
```**Spanish:**
```
Date:
20/8/15
20/8/2015
20 de agosto de 2015
jueves, 20 de agosto de 2015Time:
13:27
13:27:42 (with seconds)Full:
20/8/15 13:27
20/8/2015 13:27
20 de agosto de 2015, 13:27
jueves, 20 de agosto de 2015, 13:27:42 (with seconds)
```
And many more...## Installation
### Languages
You can look all available language packages with:
```bash
aptitude search language-pack-
```Install some languages:
```bash
sudo apt-get install language-pack-de language-pack-en language-pack-es language-pack-it
sudo locale-gen
```Check your available languages:
```bash
locale -a
```
Make sure that you have languages in format like this: de_DE### Php extension
Install php international support:
```bash
sudo apt-get install php-intl
```
Check that this extension is included:
```bash
php -m | grep intl
```### Laravel
Laravel require this package with composer:
```bash
composer require approached/laravel-date-international
```After updating composer, add the ServiceProvider to the providers array in config/app.php:
```php
Approached\LaravelDateInternational\ServiceProvider::class,and
'Dateintl'=> Approached\LaravelDateInternational\DateIntlFacade::class,
```## Usage
**Blade:**
```php
Date:
{{ dateintl_date('short', $date) }}
{{ dateintl_date('medium', $date) }}
{{ dateintl_date('long', $date) }}
{{ dateintl_date('full', $date) }}Time:
{{ dateintl_time($date) }}
{{ dateintl_time($date, true) }} (with seconds)Full:
{{ dateintl_full('short', $date) }}
{{ dateintl_full('medium', $date) }}
{{ dateintl_full('long', $date) }}
{{ dateintl_full('full', $date, true) }} (with seconds)
```**PHP:**
```php
$str = Dateintl::full('short', $date);
```**Calendar:**
With the last parameter you can control which *calendar* you want to use:
```php
$str = Dateintl::full('short', $date, false, 'japanese');
```Could be these values :
- persian
- japanese
- buddhist
- chinese
- indian
- islamic
- hebrew
- coptic
- ethiopic## License
MIT