@extends('backend.layouts.app') @section('content')
@foreach($club_points as $key => $club_point) @endforeach
# {{translate('Order Code')}} {{translate('Customer Name')}} {{translate('Points')}} {{translate('Convert Status')}} {{translate('Earned At')}} {{translate('Options')}}
{{ ($key+1) + ($club_points->currentPage() - 1)*$club_points->perPage() }} @if ($club_point->order != null) {{ $club_point->order->code }} @else {{ translate('Order not found') }} @endif @if ($club_point->user != null) {{ $club_point->user->name }} @else {{ translate('User not found') }} @endif {{ $club_point->points }} @if ($club_point->convert_status == 1) {{translate('Converted')}} @else {{translate('Pending')}} @endif {{ $club_point->created_at }}
{{ $club_points->appends(request()->input())->links() }}
@endsection