<?php
namespace App\View\Components;
use Illuminate\View\Component;
class Doctor extends Component
{
public $doctors;
public $cols;
public function __construct($doctors, $cols = 4)
{
$this->doctors = $doctors;
$this->cols = $cols;
}
public function render()
{
return view('components.doctor');
}
}