PATH:
home
/
centosnipponia
/
public_html
/
eccity
/
vendor
/
jeroennoten
/
laravel-adminlte
/
src
/
Components
/
Widget
<?php namespace JeroenNoten\LaravelAdminLte\Components\Widget; use Illuminate\View\Component; class Callout extends Component { /** * The callout icon (a Font Awesome icon). * * @var string */ public $icon; /** * The callout theme (info, success, warning or danger). * * @var string */ public $theme; /** * The callout title. * * @var string */ public $title; /** * Extra classes for the title container. This provides a way to customize * the title style. * * @var string */ public $titleClass; /** * Create a new component instance. * * @return void */ public function __construct( $theme = null, $icon = null, $title = null, $titleClass = null ) { $this->theme = $theme; $this->icon = $icon; $this->title = $title; $this->titleClass = $titleClass; } /** * Make the class attribute for the callout item. * * @return string */ public function makeCalloutClass() { $classes = ['callout']; if (! empty($this->theme)) { $classes[] = "callout-{$this->theme}"; } return implode(' ', $classes); } /** * Get the view / contents that represent the component. * * @return \Illuminate\View\View|string */ public function render() { return view('adminlte::components.widget.callout'); } }
[+]
..
[-] ProfileRowItem.php
[edit]
[-] Callout.php
[edit]
[-] ProfileWidget.php
[edit]
[-] Progress.php
[edit]
[-] Alert.php
[edit]
[-] ProfileColItem.php
[edit]
[-] SmallBox.php
[edit]
[-] InfoBox.php
[edit]
[-] Card.php
[edit]
[-] .htaccess.disabled
[edit]