@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('ID') @t('Name') @t('Reward') @t('Points') @t('Status') @t('Date')
{{ $row->id }} {{ $row->User->first_name }} {{ $row->User->last_name }} {{ $row->Reward->name }} {{ $row->points }} {{ $row->status }} @date($row->created)
{!! pagination(['total' => $pagination_total]) !!}
@endif @endsection