'https://code.jquery.com/jquery-latest.js', 'bootstrap' => 'https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js', 'angular' => 'https://ajax.googleapis.com/ajax/libs/angularjs/1.6.1/angular.min.js', 'react' => 'https://cdnjs.cloudflare.com/ajax/libs/react/15.5.4/react.min.js', 'vue' => 'https://cdnjs.cloudflare.com/ajax/libs/vue/2.3.3/vue.min.js', ]; /* |-------------------------------------------------------------------------- | Styles |-------------------------------------------------------------------------- | | CDN CSS links. | | It can be used with the Import::style() method. | | Example: Import::style('bootstrap', 'awesome'); | */ public $styles = [ 'bootstrap' => 'https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css', 'awesome' => 'https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css', ]; /* |-------------------------------------------------------------------------- | Fonts |-------------------------------------------------------------------------- | | CDN Font links. | | It can be used with the CDN::font() method. | | Example: CDN::font('robotic'); | */ public $fonts = []; /* |-------------------------------------------------------------------------- | Images |-------------------------------------------------------------------------- | | CDN Image links. | | It can be used with the CDN::image() method. | | Example: CDN::image('wallpaper'); | */ public $images = []; /* |-------------------------------------------------------------------------- | Files |-------------------------------------------------------------------------- | | CDN Files links. | | It can be used with the CDN::file() method. | | Example: CDN::file('note'); | */ public $files = []; }