Carbon Library (Third-party)
Carbon is a popular PHP library for working with dates.
It extends the PHP DateTime class and provides a more expressive API.
Installing Carbon
Section titled “Installing Carbon”composer require nesbot/carbonExample
Section titled “Example”use Carbon\Carbon;
$date = Carbon::now();
echo $date->addDays(3);Formatting
Section titled “Formatting”echo Carbon::now()->format("Y-m-d H:i:s");