@extends('backend.layouts.app') @section('content')
@foreach($products as $key => $product) @endforeach
# {{translate('Name')}} {{translate('Owner')}} {{translate('Price')}} {{translate('Point')}} {{translate('Options')}}
{{ ($key+1) + ($products->currentPage() - 1)*$products->perPage() }}
Image
{{ $product->getTranslation('name') }}
@if ($product->user != null) {{ $product->user->name }} @endif {{ number_format($product->unit_price,2) }} {{ $product->earn_point }}
{{ $products->appends(request()->input())->links() }}
{{translate('Set Point for Product Within a Range')}}
{{ translate('Set any specific point for those products what are between Min-price and Max-price. Min-price should be less than Max-price') }}
@csrf
{{translate('Set Point for all Products')}}
@csrf
@endsection