class YourController extends Controller
{
public function convertDate()
{
$hijriDate = '1444/01/01'; // Replace with your Hijri Shamsi date
$gregorianDate = HijriShamsiConverter::hijriToGregorian($hijriDate);
// $gregorianDate will now contain the converted Gregorian date
}
}