for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace backend\assets\plugins;
use yii\web\AssetBundle;
use yii\web\JqueryAsset;
use backend\assets\BootstrapAsset;
/**
* Class DateRangePickerAsset
* @package backend\assets\plugins
*/
class DateRangePickerAsset extends AssetBundle
{
* @var string
public $sourcePath = '@vendor/almasaeed2010/adminlte/bower_components/bootstrap-daterangepicker';
* @inheritdoc
public function init()
parent::init();
$this->css = [
'daterangepicker.css'
];
$this->js = [
'daterangepicker.js'
}
* @var array
public $depends = [
JqueryAsset::class,
BootstrapAsset::class