PHP code example of nozzha / yii2-bootstrap_rtl

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

    

nozzha / yii2-bootstrap_rtl example snippets


/* @var $this yii\web\View */

\nozzha\bootstrap_rtl\BootstrapRTLAsset::register($this);

class AppAsset extends AssetBundle
{
    ...
    public $depends = [
        ...
        'nozzha\bootstrap_rtl\BootstrapRTLAsset',
        ...
    ];
}

php composer.phar