目前我在 laravel 中有这个雄辩的选择
$queryBooking = Booking::where('id',$id)->select('starts_at','ends_at')->first();
现在我想将特定格式放入starts_at并ends_at使用这种格式Y-m-d
数据应该像这样显示2020-05-29 (Y-m-d)
我怎样才能使用 laravel 雄辩地做到这一点?
更新
尝试了 spiny 的答案做了一些修改。
$queryBooking = Booking::where('id',$id)->select('starts_at','ends_at')->first();
$booking = PropertyBooking::where('property_id',$queryBooking->property_id)
->selectRaw(
'DATE_FORMAT(`starts_at`, "%Y-%m-%d") AS `starts_at`, DATE_FORMAT(`ends_at`, "%Y-%m-%d") AS `ends_at`'
)->get();
return view('admin.pages.property_request.edit', compact('property_request','booking'));
在我的刀片中尝试使用 js 记录它,就像这样
慕森王
阿晨1998