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 ProfileFlatItem extends Component
{
public $badge;
public $title;
public $text;
public $url;
public function __construct($badge = 'info', $title, $text, $url = '#')
$this->badge = $badge;
$this->title = $title;
$this->text = $text;
$this->url = $url;
}
public function render()
return view('adminlte::profile-flat-item');