1. Go to this page and download the library: Download grantholle/laravel-timezone library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
grantholle / laravel-timezone example snippets
'events' => [
// By default, the Login event
\Illuminate\Auth\Events\Login::class,
// Another event which deals with a user
\App\Events\MyEvent::class,
],
use GrantHolle\Timezone\Facades\Timezone;
// Get the user's or app default timezone
$string = Timezone::getCurrentTimezone();
$string = timezone();
// Get a collection of timezones and a labeled version of them.
// The key is the timezone and the value is a formatted label.
Timezone::timezones();
timezones();
// Convert a date to the user's timezone
// This will return a CarbonImmutable instance
$carbonImmutable = Timezone::toLocal($utcDate);
// Optionally you can pass in a format or use
// the toLocalFormatted function
$string = Timezone::toLocal($utcDate, 'Y-m-d');
$string = to_local_timezone($utcDate, 'Y-m-d');
// Leaving out the last parameter will use the config's `format` value
$string = Timezone::toLocalFormatted($utcDate);
$carbonImmutable = to_local_timezone($utcDate);
// Convert user's dates to your app's timezone.
// It relies on Carbon's `parse` function, so you
// can pass many things to it to parse.
$carbonImmutable = Timezone::fromLocal($usersDate);
$carbonImmutable = from_local_timezone($usersDate);
// Helpers to get the user's "today" and "now" values
$carbonImmutable = Timezone::today();
$carbonImmutable = local_today();
$carbonImmutable = Timezone::now();
$carbonImmutable = local_now();