Carbon Add Months To Date In Laravel

In this tutorial, I will give you an example of carbon add months to date in laravel. carbon provides many function like addmonth(), addmonths() to add month in laravel 8. Using add month you can change the date and time with month.

If we need to add month or more months in date then you can use carbon in laravel 8. carbon provides addMonth() and addMonths() method to add months on the carbon date object.

So, let's see an example of laravel 8 carbon add months to date or add months using carbon in laravel 8.

addMonth() Example

Carbon addMonth() function is used to add next month on date. So, here I will give you an example of current date to add a month.

<?php
  
namespace App\Http\Controllers;
  
use Illuminate\Http\Request;
use Carbon\Carbon;
  
class DateController extends Controller
{
    public function index()
    {
        $currentDateTime = Carbon::now();
        $newDateTime = Carbon::now()->addMonth();
             
        print_r($currentDateTime);
        print_r($newDateTime);
    }
}

 

Output :

Current Date and Time : 022-01-16 07:03:05
Current Date with Add Month : 022-02-16 07:03:05

 

 

addMonths() Example

Carbon addMonths() function is used to add months as per your requirements on the date. So, here I will give you an example of the current date to add 2 months.

<?php
  
namespace App\Http\Controllers;
  
use Illuminate\Http\Request;
use Carbon\Carbon;
  
class DateController extends Controller
{
    public function index()
    {
        $currentDateTime = Carbon::now();
        $newDateTime = Carbon::now()->addMonths(2);
             
        print_r($currentDateTime);
        print_r($newDateTime);
    }
}

 

Output :

Current Date and Time : 2022-01-16 07:03:55
Current Date with Add Months : 2022-03-16 07:03:55

 


You might also like :

RECOMMENDED POSTS

FEATURE POSTS