PHP code example of sawirricardo / laravel-timezone

1. Go to this page and download the library: Download sawirricardo/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/ */

    

sawirricardo / laravel-timezone example snippets


return [
    // possible options: session, cache
    'driver' => 'cache',

    'url' => 'laravel-timezone',
    'controller' => \Sawirricardo\LaravelTimezone\Http\Controllers\LaravelTimezoneController::class,

    'allowed_timezones' => [
        ...timezone_identifiers_list(),
    ],

    'middleware' => [
        'web',
    ],
];

echo currentTimezone(); // UTC
bash
php artisan vendor:publish --tag="laravel-timezone-config"
bash
php artisan vendor:publish --tag="laravel-timezone-views"
blade
{{-- Just put this in your layout file --}}
<x-laravel-timezone />
html
<script>
    document.addEventListener("DOMContentLoaded", function () {
        const timezone = Intl.DateTimeFormat().resolvedOptions().timeZone;
        axios
            .post("{{ route('laravel-timezone') }}", {
                timezone: timezone,
            })
            .catch((error) => null);
    });
</script>