PHP code example of tohtamysh / laravel-helpers

1. Go to this page and download the library: Download tohtamysh/laravel-helpers library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

tohtamysh / laravel-helpers example snippets


'Helper' => Tohtamysh\Helper\HelperFacade::class,

$end = Helper::ending(55, 'дом', 'дома', 'домов')

$russian_date = Helper::russianDate('2017-01-02', 'month', true)

optimizeImage($filePath)

$end = Helper::timeFormat(80)
 php
'providers' => array(
    Tohtamysh\Helper\HelperServiceProvider::class,
);