25 lines
618 B
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\Currency;
use App\Models\Setting\Tax;
class Items extends Component
{
/**
* Get the view / contents that represent the component.
*
* @return \Illuminate\Contracts\View\View|string
*/
public function render()
{
$currency = Currency::where('code', setting('default.currency'))->first();
$taxes = Tax::enabled()->orderBy('name')->get();
return view('components.documents.form.items', compact('currency', 'taxes'));
}
}