1
我使用碳比較2個日期與今天的日期,但是我也有包含了像值的數據庫稱爲平日另一個領域:Laravel碳,檢索今天的日期與工作日?
「MO」 「TU」 「WE」
所以我不只想搜索和按日期輸出也由平日所以搜索:
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'));
}