@extends('mobile.layouts.app', ['disableFoot' => true]) @section('title', app_name() . ' | Elite Rewards') @push('after-styles') @endpush @section('content') @include('mobile.includes.app-bar', ['navBarName' => __('mobile.my_rewards'),'backRoute'=>route('mobile.rewards')]) @include('mobile.includes.qr-card')
@lang('mobile.active_rewards') @lang('mobile.past_rewards')
@foreach ($activeRewards as $active) @include('mobile.includes.reward-list-component', [ 'id' => $active->id, 'merchantImg' => $active->reward->client->logo, 'title' => $active->reward->name, 'point' => $active->used_points, 'coupon' => $active->coupon_code, 'couponImg' => $active->reward->image, 'description' => $active->reward->description, 'expiry' => $active->expiry, ]) @endforeach
{!! $activeRewards->links('mobile-pagination') !!}
@endsection @push('after-scripts') @endpush