Answers for "carbon set time to custom time"

PHP
6

carbon now format

use Carbon/Carbon
Carbon::now()->format('Y-m-d H:i:s');
Posted by: Guest on August-19-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