PHP code example of thomzee / numbros

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

    

thomzee / numbros example snippets


   'providers' => [
        . . .
       Thomzee\Numbros\NumbrosServiceProvider::class,
   ]
    

   'aliases' => [
       . . .
       'Laramap' => Thomzee\Numbros\Facades\Numbros::class,
   ]
   

$numbros = new Numbros();
$numbros->generate('roman', 'inv', '12345');

$numbros = new Numbros();
$numbros->generate('number', 'inv', '12345', '');
app.php