PHP Classes

File: code.php

Recommend this page to a friend!
  Classes of Ahmed Abdulla   Laravel Hijri Date Conversion   code.php   Download  
File: code.php
Role: Example script
Content type: text/plain
Description: Example usage in a Laravel controller or service
Class: Laravel Hijri Date Conversion
Convert dates from the Hijri to Gregorian calendar
Author: By
Last change:
Date: 8 months ago
Size: 357 bytes
 

Contents

Class file image Download
use App\HijriShamsiConverter;

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
    }
}