I need to display as as the product Status is special for a selected date from X date to X date,
This is the place where a user can create a new sub category and select a special offer dates
This is my Show Function in my Controller
public function show(Category $category)
{
// ! Search Filter
$filter = new SearchFilter();
$filter->where('parent_id','=',$category->id);
// ! Date Filter (Today)
$day = Carbon::now();
$today = $day->toDateString();
return view('manage.categories.show')->with([
'pageTitle' => $category->name,
'allItems' => $this->dataRepo->search([], $filter),
'isDestroyingEntityAllowed' => $this->isDestroyingEntityAllowed,
'entity' => $category,
'today'=>$today,
]);
}
This is my blade where it checks the date
@foreach ($allItems as $item)
<td>
@if ($item->special_start == $today || $item->special_end == $today)
Special
@else
Regular
@endif
</td>
@endforeach
But this will show Special only if it matches the date with start date and end date, the days between the start date and the end date will be shown as Regular.
How can i fix it ?
Use
Carbon
it is not recommended to write logic inview
but you can move this to controllerref link https://carbon.nesbot.com/docs/#api-comparison