Path : /var/www/clients/client0/web25/web/vendor/cagilo/cagilo/src/Components/ |
B-Con CMD Config cPanel C-Rdp D-Log Info Jump Mass Ransom Symlink vHost Zone-H |
Current File : /var/www/clients/client0/web25/web/vendor/cagilo/cagilo/src/Components/Meta.php |
<?php declare(strict_types=1); namespace Cagilo\UI\Components; use Illuminate\Contracts\View\View; use Illuminate\View\Component; class Meta extends Component { public $title; public $description; public $author; public $robots; public $keywords; public $type; public $card; public $image; public $url; /** * @param string $title * @param string $description * @param string $keywords * @param string $author * @param string $robots * @param string $type * @param string $card * @param string $image * @param string $url */ public function __construct( string $title = '', string $description = '', string $keywords = '', string $author = '', string $robots = '', string $type = 'website', string $card = 'summary_large_image', string $image = '', string $url = '' ) { $this->title = $title; $this->description = $description; $this->keywords = $keywords; $this->author = $author; $this->robots = $robots; $this->type = $type; $this->card = $card; $this->image = $image; $this->url = $url ?: url()->current(); } public function render(): View { return view('cagilo::meta'); } }