Answers for "convert to indian date time in laravel"

PHP
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
1

how convert the date and time to integer in laravel

$timestamp = $user->created_at->timestamp
Posted by: Guest on June-15-2021

Code answers related to "convert to indian date time in laravel"

Browse Popular Code Answers by Language