@extends('store.layout.app') @section ('content')
| # | {{ __('keywords.Product')}} {{ __('keywords.Name')}} | {{ __('keywords.Deal Price')}} | {{ __('keywords.From Date')}} | {{ __('keywords.To Date')}} | {{ __('keywords.Status')}} | {{ __('keywords.Actions')}} | ||
|---|---|---|---|---|---|---|---|---|
| {{$i}} | {{$deal->product_name}} ({{$deal->quantity}}{{$deal->unit}}) | {{$deal->deal_price}} | {{$deal->valid_from}} | {{$deal->valid_to}} | @if($deal->valid_to > $currentdate && $currentdate >= $deal->valid_from)Ongoing | @endif @if($deal->valid_to < $currentdate)Expired | @endif @if($deal->valid_from > $currentdate)Coming soon | @endifedit close |
| {{ __('keywords.No data found')}} |