app/View/Components/AvailabilityForm.php
use Illuminate\View\Component; class AvailabilityForm extends Component{ public $type; public $content; public function __construct($type, $content=null) { $this->type = $type; $this->content = $content; } public function render() { return view("components.$this->type.availability-form", [ 'content' => $this->content, ]); }}