In this article, we will see carbon add day and add days to date in laravel 9. Carbon provides the addDay() and addDays() methods to add days to date objects. You can add a single day and also you can add days to the current date or any date. In the addDays() function need to pass the no. of days as a parameter.
So, let's see laravel 9 carbon add days to date, how to add a day to date in laravel 9, PHP carbon add a day.
In this example, we will add a day to the current date using the carbon addDay() 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()->addDay();
print_r($currentDateTime);
print_r($newDateTime);
}
}
Output:
Carbon\Carbon Object
(
[date] => 2022-11-02 08:51:57.696013
[timezone_type] => 2
[timezone] => GMT
)
Carbon\Carbon Object
(
[date] => 2022-11-03 08:51:57.696023
[timezone_type] => 2
[timezone] => GMT
)
In this example, we will add 5 days to the current date using the carbon addDays() 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()->addDays(5);
print_r($currentDateTime);
print_r($newDateTime);
}
}
Output:
Carbon\Carbon Object
(
[date] => 2022-11-02 08:55:58.896013
[timezone_type] => 2
[timezone] => GMT
)
Carbon\Carbon Object
(
[date] => 2022-11-07 08:55:59.796023
[timezone_type] => 2
[timezone] => GMT
)
You might also like:
In this example we will see laravel 8 eloquent whereHas() condition. you will learn about wherehas() condition in l...
Oct-06-2021
In this article, we will see the bootstrap modal in angular 13. Ng Bootstrap is developed from bootstrap and they p...
Jun-10-2022
In this article, we will see how to validate email using jquery. we will use regular expression(regex) for email va...
Nov-09-2022
In this tutorial, I will show you how to check RAM and CPU usage in laravel in ubuntu OS. Many times we requir...
Jul-29-2020