In this article, we will see carbon add months to date in laravel 9. Carbon provides the addMonth() and addMonths() functions to add month to date objects. Using the addMonth() function you can add one month to the date and time object and the addMonths() function helps to add no. of months adds to date and time objects.
So let's see, how to add months in laravel 9 using carbon, add month to date in laravel 9, and PHP add month to date.
In this example, we will add the month to the current date using the carbon addMonth() function.
<?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:
Carbon\Carbon Object
(
[date] => 2022-11-03 09:31:35.635461
[timezone_type] => 2
[timezone] => GMT
)
Carbon\Carbon Object
(
[date] => 2022-12-03 09:31:36.435461
[timezone_type] => 2
[timezone] => GMT
)
In this example, we will add 5 months to the current date using the carbon addMonths() function.
<?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(5);
print_r($currentDateTime);
print_r($newDateTime);
}
}
Output:
Carbon\Carbon Object
(
[date] => 2022-11-03 09:35:23.335461
[timezone_type] => 2
[timezone] => GMT
)
Carbon\Carbon Object
(
[date] => 2023-04-03 09:35:23.535861
[timezone_type] => 2
[timezone] => GMT
)
In this example, we will use the diffForHumans() function with addMonth() to the current date.
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
use Carbon\Carbon;
class DateController extends Controller
{
public function index()
{
$currentDateTime = Carbon::now();
$newDateTime = $currentDateTime->diffForHumans($currentDateTime->copy()->addMonth());
print_r($currentDateTime);
print_r($newDateTime);
}
}
Output:
In this example, we will use the diffForHumans() function with addMonths() to the current date.
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
use Carbon\Carbon;
class DateController extends Controller
{
public function index()
{
$currentDateTime = Carbon::now();
$newDateTime = $currentDateTime->diffForHumans($currentDateTime->copy()->addMonths(5));
print_r($currentDateTime);
print_r($newDateTime);
}
}
Output:
You might also like:
In this article, we will see how to use an array in React JS. We can use the JavaScript standard Array functio...
Aug-12-2022
Laravel is a popular PHP framework known for its elegance and simplicity in building web applications. When it comes to...
Sep-13-2023
In this example we will see PHP access modifiers example. In PHP default access modifier is public. PHP provide differen...
Sep-06-2021
In this article, we will see an example of carbon add months to date in laravel. Here, we will give you a simple&nb...
Dec-05-2020