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 Progress extends Component
{
public $size;
public $bg;
public $stripped;
public $vertical;
public $value;
public function __construct(
$size = null, $bg = 'info',
$value, $stripped = false, $vertical = false)
$this->bg = $bg;
$this->size = $size;
$this->value = $value;
$this->stripped = $stripped;
$this->vertical = $vertical;
}
public function barsize()
return ! is_null($this->size) ? 'progress-'.$this->size : null;
public function render()
return view('adminlte::components.progress');