akaunting 3.0 (the last dance)
This commit is contained in:
46
app/View/Components/Show/Accordion.php
Normal file
46
app/View/Components/Show/Accordion.php
Normal file
@ -0,0 +1,46 @@
|
||||
<?php
|
||||
|
||||
namespace App\View\Components\Show;
|
||||
|
||||
use App\Abstracts\View\Component;
|
||||
|
||||
class Accordion extends Component
|
||||
{
|
||||
public $type;
|
||||
|
||||
public $icon;
|
||||
|
||||
public $open;
|
||||
|
||||
/**
|
||||
* Create a new component instance.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function __construct(
|
||||
string $type, string $icon = '', bool $open = false
|
||||
) {
|
||||
$this->type = $type;
|
||||
$this->icon = $this->getIcon($icon);
|
||||
$this->open = $open;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the view / contents that represent the component.
|
||||
*
|
||||
* @return \Illuminate\Contracts\View\View|string
|
||||
*/
|
||||
public function render()
|
||||
{
|
||||
return view('components.show.accordion.index');
|
||||
}
|
||||
|
||||
protected function getIcon($icon)
|
||||
{
|
||||
if (! empty($icon)) {
|
||||
return $icon;
|
||||
}
|
||||
|
||||
return 'expand_more';
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user