laravel-helpers maintained by tohtamysh
Last update
2019/03/06 09:27
License
Require
- php >=7.0
- illuminate/support 5.*
- nesbot/carbon ^1.26.3 || ^2.0
Last update
2019/03/06 09:27
License
Require
- php >=7.0
- illuminate/support 5.*
- nesbot/carbon ^1.26.3 || ^2.0
Last update
2019/02/20 09:45
License
Require
- php >=7.0
- illuminate/support 5.*
- nesbot/carbon ~1.21
Last update
2019/02/20 09:39
License
Require
- php >=7.0
- illuminate/support 5.*
- nesbot/carbon ~1.21
Last update
2018/03/29 22:29
License
Require
- php >=5.5.9
- ext-mbstring *
- illuminate/support 5.*
- nesbot/carbon ~1.21
Last update
2018/03/28 13:05
License
Require
- php >=5.5.9
- ext-mbstring *
- illuminate/support 5.*
- nesbot/carbon ~1.21
Last update
2018/03/28 12:57
License
Require
- php >=5.5.9
- ext-mbstring *
- illuminate/support 5.*
- nesbot/carbon ~1.21
Last update
2018/01/28 08:25
License
Require
- php >=5.5.9
- ext-mbstring *
- illuminate/support 5.*
- nesbot/carbon ~1.21
Last update
2017/07/26 15:05
License
Require
- php >=5.5.9
- ext-mbstring *
- illuminate/support 5.*
- nesbot/carbon ~1.21
Last update
2017/07/07 09:22
License
Require
- php >=5.5.9
- ext-mbstring *
- illuminate/support 5.*
- nesbot/carbon ~1.21
Last update
2017/06/22 09:08
License
Require
- php >=5.5.9
- ext-mbstring *
- illuminate/support 5.*
- nesbot/carbon ~1.21
Last update
2017/06/22 09:06
License
Require
- php >=5.5.9
- ext-mbstring *
- illuminate/support 5.*
- nesbot/carbon ~1.21
Last update
2017/06/22 09:02
License
Require
- php >=5.5.9
- ext-mbstring *
- illuminate/support 5.*
- nesbot/carbon ~1.21
Last update
2017/06/21 14:08
License
Require
- php >=5.5.9
- ext-mbstring *
- illuminate/support 5.*
- nesbot/carbon ~1.21
Last update
2017/06/19 12:49
License
Require
- php >=5.5.9
- ext-mbstring *
- illuminate/support 5.*
- nesbot/carbon ~1.21
Last update
2017/06/18 09:56
License
Require
- php >=5.5.9
- ext-mbstring *
- illuminate/support 5.*
- nesbot/carbon ~1.21
Last update
2017/06/17 20:08
License
Require
- php >=5.5.9
- ext-mbstring *
- illuminate/support 5.*
- nesbot/carbon ~1.21
Last update
2017/06/16 12:23
License
Require
- php >=5.5.9
- ext-mbstring *
- illuminate/support 5.*
- nesbot/carbon ~1.21
Last update
2017/06/16 12:22
License
Require
- php >=5.5.9
- ext-mbstring *
- illuminate/support 5.*
- nesbot/carbon ~1.21
Last update
2017/06/16 12:18
License
Require
- php >=5.5.9
- ext-mbstring *
- illuminate/support 5.*
- nesbot/carbon ~1.21
Last update
2017/06/16 12:13
License
Require
- php >=5.5.9
- ext-mbstring *
- illuminate/support 5.*
- nesbot/carbon ~1.21
Last update
2017/06/16 12:02
License
Require
- php >=5.4.0
- ext-mbstring *
- illuminate/support 5.*
- nesbot/carbon ~1.21
Last update
2017/06/16 11:51
License
Require
- php >=5.4.0
- ext-mbstring *
- illuminate/support 5.*
- nesbot/carbon ~1.21
Helper function for Laravel 5
Installation
run composer
composer require tohtamysh/laravel-helpers
For Laravel < 5.5
add service provider
Register the Service Provider by adding it to your project's providers array in app.php
'providers' => array(
Tohtamysh\Helper\HelperServiceProvider::class,
);
add alias
'Helper' => Tohtamysh\Helper\HelperFacade::class,
Use
Get correct russian ending
example return 'домов'
$end = Helper::ending(55, 'дом', 'дома', 'домов')
Get russian date
example return 'Января'
$russian_date = Helper::russianDate('2017-01-02', 'month', true)
Reduces image size without loss of quality.
optimizeImage($filePath)
Format time
example return '01:20'
$end = Helper::timeFormat(80)