PHP code example of cirtool / laravel-pluralize

1. Go to this page and download the library: Download cirtool/laravel-pluralize 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/ */

    

cirtool / laravel-pluralize example snippets


return [
    'apples' => trans_pluralize('There is one apple')->as('There are many apples'),
    
    'oranges' => trans_pluralize()
                    ->case([0], 'There are none')
                    ->range([1, 19], 'There are some')
                    ->range([20, '*'], 'There are many')
                    ->build(),
                    
    'time' => trans_pluralize()
                    ->case([0], ':value minute ago')
                    ->range([20, '*'], ':value minutes ago')
                    ->build()
];