Example 1: carbon format date in laravel
1. First parse the created_at field as Carbon object. $createdAt = Carbon::parse($item['created_at']); 2.Then you can use $suborder['payment_date'] = $createdAt->format('M d Y');
Example 2: php carbon from timestamp
Carbon::createFromTimestamp(1616013398)
Example 3: laravel carbon
$now = Carbon::now(); echo $now; echo "\n"; $today = Carbon::today(); echo $today; echo "\n"; $tomorrow = Carbon::tomorrow('Europe/London'); echo $tomorrow; echo "\n"; $yesterday = Carbon::yesterday(); echo $yesterday;
Comments
Post a Comment