@extends('backend.layouts.app') @section('content')
@foreach($club_point_details as $key => $club_point) @if ($club_point->product != null) @else @endif @endforeach
# {{translate('Product Name')}} {{translate('Points')}} {{translate('Earned At')}}
{{ ($key+1) + ($club_point_details->currentPage() - 1)*$club_point_details->perPage() }}{{ $club_point->product->getTranslation('name') }}{{ translate('Deleted Product') }}{{ $club_point->point }} {{ $club_point->created_at }}
{{ $club_point_details->appends(request()->input())->links() }}
@endsection