@extends('layouts.merchant-backend-layout') @section('content')
@include('includes.messages')

Member Profile

@if(count($userdata) == 0)

{{ trans('admin::users.pages.no_record_found') }}

@else @if($userdata->marital!='Single') @endif @if($userdata->marital!='Single') @endif
Unique ID Image Name DOB Gender Marital StatusAnniversary DateLogin type Email Mobile City State
{{ $userdata->referral_code }} {{ $userdata->name }} {{ date('d-F', strtotime($userdata->dob)) }} {{ $userdata->gender }} {{ $userdata->marital }} {{ $userdata->anniversary_date }} {{ $userdata->login_type }} {{ $userdata->email }} {{ $userdata->mobile }} {{ $userdata->city }} {{ $userdata->state }}
@endif

Membership Program Reward Details

@if(count($rewards) == 0)

{{ trans('admin::users.pages.no_record_found') }}

@else @foreach ( $rewards as $reward ) @endforeach
Reward Name Reward Code Reward Redeemed Reward Redeemed Date Merchant’s Comments Merchant account used
{{ $reward->rewards->name }} {{ $reward->coupon_code }} @if($reward->is_used) Yes @else No @endif @if($reward->is_used) {{$reward->updated_at}} @endif {{ $reward->feedback }} {{$reward->M_account}}
@endif

@if($loyalty == 1)

Details of Stamps Earned

@if(count($points) == 0)

{{ trans('admin::users.pages.no_record_found') }}

@else @foreach ( $points as $point ) @endforeach
Stamp Stamp Received Date Bill Number Valid Till Stamp Used Merchant’s Comments Merchant account used
{{ $point->points }} {{ $point->created_at }} {{ $point->bill_no }} {{ $point->valid_till }} @if($point->point_used) No @else Yes @endif {{ $point->feedback }} {{$point->M_account}}
@endif

@endif @if($loyalty == 2)

Details of Credits Earned

@if(count($points) == 0)

{{ trans('admin::users.pages.no_record_found') }}

@else @foreach ( $points as $point ) @endforeach
Credits Date & Time Bill No Bill Amount Credits Used Merchant’s Comments Valid Till Merchant account used
{{ $point->original_points }} {{ $point->created_at }} {{ $point->bill_no }} {{ $point->bill_amount }} @if($point->points != 0) No @else Yes @endif {{ $point->feedback }} {{ $point->valid_till }} {{$point->M_account}}
@endif

@endif @if($loyalty == 1)

Details of Stamp Redeemed

@if(count($redeemed) == 0)

{{ trans('admin::users.pages.no_record_found') }}

@else @foreach ( $redeemed as $redeem ) @endforeach
Stamp Redeemed Stamp Redeemed Date Bill Number Total Bill Amount Comments Merchant account used
{{ $redeem->point_redeem }} {{ $redeem->created_at }} {{ $redeem->bill_no }} {{ $redeem->bill_amount }} {{ $redeem->feedback }} {{$redeem->M_account}}
@endif

@endif @if($loyalty == 2)

Details of Credits Redeemed

@if(count($points) == 0)

{{ trans('admin::users.pages.no_record_found') }}

@else @foreach ( $redeemed as $redeem ) @endforeach
Credits Redeemed Date & Time Bill No Bill Amount Net Bill Amount Redeemed By Merchant’s Comments Merchant account used
{{ $redeem->point_redeem }} {{ $redeem->created_at }} {{ $redeem->bill_no }} {{ $redeem->bill_amount }} {{ $redeem->netbill_amount }} {{$redeem->redeem_by}} {{ $redeem->feedback }} {{$redeem->M_account}}
@endif

@endif

Member Feedback

@if(count($feedbacks) == 0)

{{ trans('admin::users.pages.no_record_found') }}

@else @foreach ( $feedbacks as $value ) @endforeach
Feedback for Ratings Comments Date & Time
{{ $value->class }} {{ $value->rating }} {{ $value->comments }} {{ $value->created_at }}
@endif

@section('scripts') @stop @stop