<?php
namespace App\View\Components;
use Illuminate\View\Component;
class Treatment extends Component
{
public $treatments;
public function __construct($treatments)
{
$this->treatments = $treatments;
}
public function render()
{
return view('components.treatment');
}
}