Answers for "india current date and time in laravel 8"

PHP
9

get current date laravel

use Carbon\Carbon;
$date = Carbon::now();
Posted by: Guest on June-08-2020
0

indian time laravel

Go to your_project/config/app.php, there is a line:
	'timezone' => ''
set it to:
	'timezone' => 'Asia/Kolkata'

It will set the default timezone to Asia/Kolkata. After setting this you will 
get Indian time.

Here is the list of Supported Timezones
https://www.php.net/manual/en/timezones.php
Posted by: Guest on January-25-2021

Code answers related to "india current date and time in laravel 8"

Browse Popular Code Answers by Language