空白になっているはずです。これを防ぐ方法を教えてください。 私は日付入力ボックスが1969年12月31日に表示されるのはなぜですか?
public function bookedOn($chalet_id) {
$chalet = \App\Chalet::where('chalet_id', '=', $chalet_id)->get();
if ($chalet->count() > 0) {
$books = \App\EventBookings::where('chalet_id', '=', $chalet[0]->chalet_id)->value('created_at');
$str = date('M. d, Y',strtotime($books));
return $str;
} else {
return false;
}
}
を表示するには、このコードを使用しています私はここで行う必要があるものがあると思う:
$ strの=日付( 'M D、Y'、のstrtotime($は書籍));
あなたの答えは非常に有用です。** $ books = '2010-01-01'; **私はちょうどそれを作った**返品$書籍**何とか私のために働く。 –