@extends('layouts.main-app') @section('title', 'Rewards') @section('content') @include('layouts.navbar')

Your Current Balance

Reward Points

₱{{ number_format(Auth::user()->redeem_balance, 2) }}

Available Balance

{{ number_format(Auth::user()->reward_points, 0) }}

Reward Points

@csrf

Earn points for every peso you spend.
Redeem points for discounts on future purchases.

Purchase of ₱100.00 - 1 point

Active Promo Codes

@foreach ($voucher as $vouchers )

@if($vouchers->discount_type === 'percentage') {{$vouchers->discount_value}}%
OFF @elseif($vouchers->discount_type === 'fixed_amount') ₱ {{ number_format($vouchers->discount_value, 2) }}
OFF @endif

Valid until {{ $vouchers->created_at->format('F d, Y') }}

Code:
{{ $vouchers->code}}
Description:
{{ $vouchers->description}}
@endforeach
Promo codes are limited-time offers. Make sure to apply them before they expire!
@include('layouts.footer') @endsection