| Path : /var/www/html/phkaynews-v2/app/View/Components/ |
|
B-Con CMD Config cPanel C-Rdp D-Log Info Jump Mass Ransom Symlink vHost Zone-H |
| Current File : /var/www/html/phkaynews-v2/app/View/Components/Share.php |
<?php
namespace App\View\Components;
use Illuminate\View\Component;
class Share extends Component
{
public $post;
/**
* Create a new component instance.
*
* @return void
*/
public function __construct($post)
{
$this->post = $post;
}
/**
* Get the view / contents that represent the component.
*
* @return \Illuminate\Contracts\View\View|\Closure|string
*/
public function render()
{
return view('components.share');
}
}