Answers for "laravel carbon list of time zones"

PHP
6

carbon time ago laravel

$comment->created_at->diffForHumans();
Posted by: Guest on May-09-2020
0

laravel carbon set timezone

in the AppServiceProvider.php you can add the php functionality to alter the timestamp for the whole project

public function boot()
{
    Schema::defaultStringLength(191);
    date_default_timezone_set('Asia/Aden');
}
Posted by: Guest on June-28-2021

Browse Popular Code Answers by Language