$date = Carbon::parse($request->input('date') ?? 'now')->subMonth(1);
$start_date = $date->startOfMonth()->toDateString();
$end_date = $date->endOfMonth()->toDateString();
$dates = [$start_date, $end_date];
return view('admin.payment.invoice', [
'subscriptions' => Subscription::whereBetween('approved_at', $dates)->orderBy('id','DESC')->get(),
'date' => $request->input('date')
]);
formdan girilen tarhinin 1 ay aöncesine ait verileri çekiyor ama ayın son gününe ait verileri çekemiyorum