<?php
// phpcs:disable
namespace App\View\Components;
use Illuminate\View\Component;
class PreventiveHealthCheckup extends Component
{
public $phc;
public function __construct($phc)
{
$this->phc = $phc;
}
public function render()
{
return view('components.preventive-health-checkup');
}
}