Laravel 9 Carbon Check If Date is Greater Than Other Date

Apr 27, 2022 . Admin

Hi Guys,

Today, In this example, I will explain to you how to check if a date is greater than other date in laravel 9.so it can be easy to use in laravel 9 app.

So, laravel 9 carbon check if a date is greater than other date, laravel 9 carbon compare two dates, laravel 9 carbon check if the current date is greater than other date, laravel 9 carbon check if a date is bigger than today.

Here, I will give you a full example of how to laravel 9 carbon check if a date is greater than other date so follow my all steps.

Download Laravel

Let us begin the tutorial by installing a new laravel application. if you have already created the project, then skip following step.

composer create-project laravel/laravel example-app
Example : 1
<?php

namespace App\Http\Controllers;

use Illuminate\Http\Request;
use Carbon\Carbon;

class HomeController extends Controller
{
    /**
     * laravel 9 carbon check date...
     *
     * @return string
    */
    public function index()
    {
        $otherDate = Carbon::now()->subMinutes(5);
        $nowDate = Carbon::now();

        $result = $nowDate->gt($otherDate);
        var_dump($result);
    }
}
Output:
bool(true)
Example : 2

Here,In this example we are not set date between to date so it will return to false.

<?php

namespace App\Http\Controllers;

use Illuminate\Http\Request;
use Carbon\Carbon;

class HomeController extends Controller
{
    /**
     * laravel 9 carbon check date...
     *
     * @return string
    */
    public function index()
    {
        $otherDate = Carbon::now()->subMinutes(5);
        $nowDate = Carbon::now();

        $result = $otherDate->gt($nowDate);
        var_dump($result);
    }
}
Output:
bool(false)

It Will Help You..

#Laravel 9