PHP code example of tugumuda / helpers

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

    

tugumuda / helpers example snippets


Collective\Html\HtmlServiceProvider::class,
Tugumuda\Helpers\ServiceProvider::class,

'BSForm' => Tugumuda\Helpers\Facades\BSFormFacade::class,
'TMFormatter' => Tugumuda\Helpers\Facades\FormatterFacade::class,
'TMConverter' => Tugumuda\Helpers\Facades\ConverterFacade::class,

BSForm::label('fullname', 'Fullname:');
BSForm::text('fullname', 'Angger Priyardhan Putro');

BSForm::textGroup('fullname', 'Fullname:', 'Angger Priyardhan Putro');

TMConverter::int2money('100000');
TMConverter::array2object(['name' => 'Angger', 'email' => '[email protected]']);