akaunting 3.0 (the last dance)
This commit is contained in:
56
app/View/Components/Index/Status.php
Normal file
56
app/View/Components/Index/Status.php
Normal file
@ -0,0 +1,56 @@
|
||||
<?php
|
||||
|
||||
namespace App\View\Components\Index;
|
||||
|
||||
use App\Abstracts\View\Component;
|
||||
|
||||
class Status extends Component
|
||||
{
|
||||
/** @var string */
|
||||
public $backgroundColor;
|
||||
|
||||
/** @var string */
|
||||
public $textColor;
|
||||
|
||||
/** @var string */
|
||||
public $status;
|
||||
|
||||
/** @var string */
|
||||
public $textStatus;
|
||||
|
||||
/**
|
||||
* Create a new component instance.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function __construct(
|
||||
string $backgroundColor = '', string $textColor = '',
|
||||
string $status = '', string $textStatus = ''
|
||||
) {
|
||||
$this->backgroundColor = ! empty($backgroundColor) ? $backgroundColor : 'bg-lilac-900';
|
||||
$this->textColor = ! empty($textColor) ? $textColor : 'text-purple';
|
||||
$this->status = $status;
|
||||
$this->textStatus = $this->getTextStatus($textStatus);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the view / contents that represent the component.
|
||||
*
|
||||
* @return \Illuminate\Contracts\View\View|string
|
||||
*/
|
||||
public function render()
|
||||
{
|
||||
return view('components.index.status');
|
||||
}
|
||||
|
||||
protected function getTextStatus($textStatus)
|
||||
{
|
||||
if (! empty($textStatus)) {
|
||||
return $textStatus;
|
||||
}
|
||||
|
||||
$textStatus = trans('documents.statuses.' . $this->status);
|
||||
|
||||
return $textStatus;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user