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 Callout extends Component
{
public $type;
public $title;
public function __construct($type = 'info', $title = null)
$this->type = $type;
$this->title = $title;
}
public function render()
return view('adminlte::components.callout');