55 lines
1.4 KiB
PHP
Raw Normal View History

2020-12-24 01:28:38 +03:00
<?php
namespace App\View\Components\Documents\Form;
2020-12-28 16:21:09 +03:00
use App\Abstracts\View\Components\DocumentForm as Component;
2020-12-24 01:28:38 +03:00
use App\Models\Setting\Category;
class Advanced extends Component
{
/**
* Get the view / contents that represent the component.
*
* @return \Illuminate\Contracts\View\View|string
*/
public function render()
{
$category_type = $this->getCategoryType();
if ($category_type) {
$categories = Category::$category_type()->enabled()->orderBy('name')->take(setting('default.select_limit'))->pluck('name', 'id');
} else {
$categories = Category::enabled()->orderBy('name')->take(setting('default.select_limit'))->pluck('name', 'id');
}
return view('components.documents.form.advanced', compact('categories', 'category_type'));
}
protected function getCategoryType()
{
$type = '';
switch ($this->type) {
case 'bill':
case 'expense':
case 'purchase':
$type = 'expense';
break;
case 'item':
$type = 'item';
break;
case 'other':
$type = 'other';
break;
case 'transfer':
$type = 'transfer';
break;
2020-12-28 22:10:43 +03:00
default:
$type = 'income';
break;
2020-12-24 01:28:38 +03:00
}
return $type;
}
}