23 lines
546 B
PHP
Raw Normal View History

2020-12-24 01:28:38 +03:00
<?php
namespace App\View\Components\Documents\Form;
2022-06-01 10:15:55 +03:00
use App\Abstracts\View\Components\Documents\Form as Component;
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()
{
2023-05-06 00:33:50 +03:00
$company = company();
2020-12-24 01:28:38 +03:00
2022-06-01 10:15:55 +03:00
$inputNameType = config('type.document.' . $this->type . '.route.parameter');
2020-12-24 01:28:38 +03:00
return view('components.documents.form.company', compact('company', 'inputNameType'));
2020-12-24 01:28:38 +03:00
}
}