在刀片视图中,Laravel隐藏整数至12小时格式

时间:2018-08-10 03:26:43

标签: php laravel

有什么方法可以将小时从int转换为12小时格式?我将小时作为int存储在数据库中,因为我将其用于javascript,但想在刀片视图中将其显示为12小时格式而不使用控制器 我现在在视图中使用它

Open Hours: {{$allstore->store_open}}:00 - {{$allstore->store_close}}:00

1 个答案:

答案 0 :(得分:1)

您需要将int值转换为DateTime

OtherClass

我建议您在模型中使用增变器,它将始终为您返回所需的格式

Open Hours: {{ date('h:i a' , strtotime($allstore->store_open.":00")) }} - {{date('h:i a' , strtotime($allstore->store_close.":00"))}}