1
私はしかし、私はまたのような値が含まれている平日と呼ばれるデータベースに別のフィールドを持って、今日の日付と2つの日付を比較するためにカーボンを使用しています:「TU」 「WE」はそうLaravel Carbon、今日の日付を平日に取得しますか?
を
「MO」 を
public function show($id)
{
$today = Carbon::now();
$weekday = //whatever carbon or something else has to retrieve today's day
$event = Event::with('businesses')
->where('startdate', '<', $today->format('Y-m-d'))
->where('endate', '>', $today->format('Y-m-d'))
//or where ('weekday') = $weekday?
->get();
return view('events.showEvent', compact('event'));
}