PCS開発チーム

PCS開発チーム

Laravel11 Carbon3への変更

ほとんど影響はないけど名前付き引数でtzを使っていたらtimezoneへの修正が必要。

// Carbon 2
Carbon::parse(time: $time, tz: 'UTC')

// Carbon 3
Carbon::parse(time: $time, timezone: 'UTC')

https://carbon.nesbot.com/docs/#api-carbon-3