<?php
namespace App\View\Components;
use Illuminate\View\Component;
class ShareComponent extends Component
{
public $title = "Share";
public function __construct($title)
{
$this->title = $title;
}
public function render()
{
return view('components.share-component');
}
}