2022-06-01 10:15:55 +03:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\View\Components\Documents\Index;
|
|
|
|
|
|
|
|
use App\Abstracts\View\Component;
|
|
|
|
use App\Traits\ViewComponents;
|
|
|
|
|
|
|
|
class Information extends Component
|
|
|
|
{
|
|
|
|
use ViewComponents;
|
|
|
|
|
|
|
|
public const OBJECT_TYPE = 'contact';
|
|
|
|
public const DEFAULT_TYPE = 'customer';
|
|
|
|
public const DEFAULT_PLURAL_TYPE = 'customers';
|
|
|
|
|
2022-09-13 09:38:25 +03:00
|
|
|
public $id;
|
|
|
|
|
2022-06-01 10:15:55 +03:00
|
|
|
public $document;
|
|
|
|
|
|
|
|
public $hideShow;
|
|
|
|
|
|
|
|
public $showRoute;
|
|
|
|
|
2022-07-07 10:53:26 +03:00
|
|
|
public $showDocumentRoute;
|
|
|
|
|
2022-06-01 10:15:55 +03:00
|
|
|
public $placement;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a new component instance.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function __construct(
|
2022-09-13 09:38:25 +03:00
|
|
|
string $id = '', $document, bool $hideShow = false, string $showRoute = '', string $showDocumentRoute = '', string $placement = ''
|
2022-06-01 10:15:55 +03:00
|
|
|
) {
|
2022-09-13 09:38:25 +03:00
|
|
|
$this->id = (! empty($id)) ? $id : 'tooltip-information-' . $document->id;
|
2022-06-01 10:15:55 +03:00
|
|
|
$this->document = $document;
|
|
|
|
$this->hideShow = $hideShow;
|
|
|
|
$this->showRoute = $this->getShowRoute($document->contact->type, $showRoute);
|
2022-07-07 10:53:26 +03:00
|
|
|
$this->showDocumentRoute = $this->getShowRoute($document->type, $showDocumentRoute);
|
2022-06-01 10:15:55 +03:00
|
|
|
$this->placement = (! empty($placement)) ? $placement : 'left';
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the view / contents that represent the component.
|
|
|
|
*
|
|
|
|
* @return \Illuminate\Contracts\View\View|string
|
|
|
|
*/
|
|
|
|
public function render()
|
|
|
|
{
|
|
|
|
return view('components.documents.index.information');
|
|
|
|
}
|
|
|
|
}
|