for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace JeroenNoten\LaravelAdminLte\Components;
use Illuminate\View\Component;
class ProfileWidgetItem extends Component
{
/**
* The title/header for the item.
*
* @var string
*/
public $title;
* The text/description for the item.
public $text;
* A Font Awesome icon for the item.
public $icon;
* The item size. Used to wrap the item inside a col-sm-size div.
public $size;
* Create a new component instance.
* @return void
public function __construct(
$title = null, $text = null, $icon = null, $size = 4
) {
$this->title = $title;
$this->text = $text;
$this->icon = $icon;
$this->size = $size;
}
* Get the view / contents that represent the component.
* @return \Illuminate\View\View|string
public function render()
return view('adminlte::components.profile-widget-item');