Akaunting/app/View/Components/Documents/Form/Company.php

24 lines
590 B
PHP
Raw Normal View History

2020-12-23 22:28:38 +00:00
<?php
namespace App\View\Components\Documents\Form;
2020-12-28 13:21:09 +00:00
use App\Abstracts\View\Components\DocumentForm as Component;
use App\Models\Common\Company as Model;
2020-12-23 22:28:38 +00:00
class Company extends Component
{
/**
* Get the view / contents that represent the component.
*
* @return \Illuminate\Contracts\View\View|string
*/
public function render()
{
2021-04-15 21:59:43 +00:00
$company = Model::find(company_id());
2020-12-23 22:28:38 +00:00
2021-01-09 20:41:01 +00:00
$inputNameType = config('type.' . $this->type . '.route.parameter');
2020-12-23 22:28:38 +00:00
return view('components.documents.form.company', compact('company','inputNameType'));
}
}