PHP code example of seoservice2020 / laravel-timezone

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

    

seoservice2020 / laravel-timezone example snippets


{{ Timezone::convertToLocal($post->created_at) }}

@displayDate($post->created_at)

use HasTimezone;

protected $casts = [
  'detect_timezone' => 'boolean',
];

protected $fillable = [
    'detect_timezone',
    ];

{{ Timezone::convertToLocal($post->created_at) }}

// 4th July 2018 3:32:am

{{ Timezone::convertToLocal($post->created_at, 'Y-m-d g:i', true) }}

// 2018-07-04 3:32 New York, America

{{ Timezone::toLocal($post->created_at)->diffForHumans() }}

// diff calculated relative to datetime with user-end timezone

@displayDate($post->created_at)

// 4th July 2018 3:32:am

@displayDate($post->created_at, 'Y-m-d g:i', true)

// 2018-07-04 3:32 New York, America

$post = Post::create([
    'publish_at' => Timezone::convertFromLocal($request->get('publish_at')),
    'description' => $request->input('description'),
]);

php artisan vendor:publish --provider="SEOService2020\Timezone\TimezoneServiceProvider" --tag=config

php artisan vendor:publish --provider="Torann\GeoIP\GeoIPServiceProvider" --tag=config
bash
php artisan vendor:publish --provider="SEOService2020\Timezone\TimezoneServiceProvider" --tag=migrations
bash
php artisan migrate