GiftCard Redeems
@if (auth()->check()) @if (auth()->user()->hasRole('admin')) @forelse($giftcard_redeems as $notification)
{{ $notification->data['name'] }} Redeemed [ {{ $notification->data['redeemed_amount'] }} ] QR for GiftCard on {{date('d-m-Y', strtotime($notification->created_at))}}.
Mark as read
{{ $notification->created_at->diffForHumans() }}
@if($loop->last)
@endif
@empty
There are no notifications
@endforelse
@endif
@endif
Point Credits
@if (auth()->check()) @if (auth()->user()->hasRole('admin')) @forelse($excel_points as $notification)
{{ $notification->data['name'] }} @if($notification->data['return_amount'] > 0 ) have a return of {{ $notification->data['return_amount'] }} Points On {{date('d-m-Y', strtotime($notification->created_at))}}. @else have a credit of [ @if($notification->data['credit_amount'] > 0) {{$notification->data['credit_amount']}} @else {{$notification->data['cash_amount']}} @endif ] Points On {{date('d-m-Y', strtotime($notification->created_at))}}. @endif
Mark as read
{{ $notification->created_at->diffForHumans() }}
@if($loop->last)
@endif
@empty
There are no notifications
@endforelse
@endif
@endif