PATH:
home
/
centosnipponia
/
public_html
/
eccity
/
vendor
/
jeroennoten
/
laravel-adminlte
/
src
/
Components
/
Widget
<?php namespace JeroenNoten\LaravelAdminLte\Components\Widget; use Illuminate\View\Component; class ProfileColItem extends Component { /** * The title/header for the item. * * @var string */ public $title; /** * The text/description for the item. * * @var string */ public $text; /** * A Font Awesome icon for the item. * * @var string */ public $icon; /** * The item size. Used to wrap the item inside a col-size div. * * @var int */ public $size; /** * The badge theme for the text attribute. When used, the text attribute * will be wrapped inside a badge of the configured theme. Available themes * are: light, dark, primary, secondary, info, success, warning, danger or * any other AdminLTE color like lighblue or teal. * * @var string */ public $badge; /** * Setup an url for the item. When enabled the title attribute will be * wrapped inside a link pointing to that url. * * @var string */ public $url; /** * Create a new component instance. * * @return void */ public function __construct( $title = null, $text = null, $icon = null, $size = 4, $badge = null, $url = null ) { $this->title = $title; $this->text = $text; $this->icon = $icon; $this->size = $size; $this->badge = $badge; $this->url = $url; } /** * Make the text wrapper class. * * @return string */ public function makeTextWrapperClass() { $classes = []; if (isset($this->badge)) { $classes[] = "badge bg-{$this->badge}"; } return implode(' ', $classes); } /** * Get the view / contents that represent the component. * * @return \Illuminate\View\View|string */ public function render() { return view('adminlte::components.widget.profile-col-item'); } }
[+]
..
[-] 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]