十月CMS,如何更改模板中的日期格式?

时间:2017-12-26 16:12:48

标签: php laravel octobercms

我使用代码:var storageAccount = CloudStorageAccount.DevelopmentStorageAccount; var blobClient = storageAccount.CreateCloudBlobClient(); var blobContainer = blobClient.GetContainerReference(containerName); var sourceBlob1 = blobContainer.GetBlockBlobReference("SOURCE1.txt"); var targetBlob1 = blobContainer.GetBlockBlobReference("TARGET1.txt"); await targetBlob1.StartCopyAsync(sourceBlob1, null, null, null, null, CancellationToken.None).ConfigureAwait(false); var sourceBlob2 = blobContainer.GetPageBlobReference("SOURCE2.txt"); var targetBlob2 = blobContainer.GetPageBlobReference("TARGET2.txt"); await targetBlob2.StartCopyAsync(sourceBlob2, null, null, null, null, CancellationToken.None).ConfigureAwait(false); ,但这不起作用。

3 个答案:

答案 0 :(得分:1)

您应该尝试在operation模型中添加此内容:

public function getUpdatedAtAttribute($date)
  {
      return Carbon\Carbon::createFromFormat('Y-m-d H:i:s', $date)->format('d.m.Y H:i');
  }

每当您使用模型中的这些属性显示日期时,这些属性将以不同方式显示。

$operation= Operation::find(1);
echo $operation->updated_at; // d.m.Y H:i will be displayed

答案 1 :(得分:0)

如果了解你的问题......可能你正在寻找: -

{{date('d.m.Y H:i',strtotime(operation.updated_at))}}

希望它有所帮助!

答案 2 :(得分:0)

您可以使用

operation.updated_at.format('d.m.Y H:i')

因为updated_at是一个碳物体