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;
|
2021-02-11 16:08:20 +03:00
|
|
|
use App\Models\Common\Company as Model;
|
2020-12-24 01:28:38 +03:00
|
|
|
|
|
|
|
class Company extends Component
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Get the view / contents that represent the component.
|
|
|
|
*
|
|
|
|
* @return \Illuminate\Contracts\View\View|string
|
|
|
|
*/
|
|
|
|
public function render()
|
|
|
|
{
|
2021-04-16 00:59:43 +03:00
|
|
|
$company = Model::find(company_id());
|
2020-12-24 01:28:38 +03:00
|
|
|
|
2021-01-09 23:41:01 +03:00
|
|
|
$inputNameType = config('type.' . $this->type . '.route.parameter');
|
2020-12-24 01:28:38 +03:00
|
|
|
|
2021-10-06 15:24:12 +03:00
|
|
|
return view('components.documents.form.company', compact('company', 'inputNameType'));
|
2020-12-24 01:28:38 +03:00
|
|
|
}
|
|
|
|
}
|