@extends('Layouts/dashboard') @section('submenu') @include( 'Plugins/Membership/Views/Elements/list_submenu' ) @endsection @section('content') @if (!count($data))

@t('Not in the card reward program? Contact licklist administrators for more details');

@else @foreach ($data as $row) @endforeach
@t('Name') @t('Email') @t('Phone') @t('Birthday') @t('Card') @t('Amount') @t('Currency') @t('Cleared') @t('Date')
{{ $row->Card->User->first_name }} {{ $row->Card->User->last_name }} {{ ($row->Card->User->email ? $row->Card->User->email : __('N/A')) }} {{ ($row->Card->User->phone ? $row->Card->User->phone : __('N/A')) }} {{ ($row->Card->User->birthday ? $row->Card->User->birthday : __('N/A')) }} **** **** **** {{ $row->Card->last_numbers }} {{ $row->amount }} {{ $row->currency }} {{ ($row->cleared ? __('Yes') : '') }} @datetime($row->date)
{!! pagination(['total' => $pagination_total]) !!}
@endif @endsection