@extends('layouts.back-end.app') @section('title', \App\CPU\translate('Product in Wishlist Report')) @push('css_or_js') @endpush @section('content')

{{\App\CPU\translate('product_in_wishlist')}}

@foreach($products as $key=>$data) @endforeach
{{\App\CPU\translate('SL')}} {{\App\CPU\translate('Product Name')}} {{\App\CPU\translate('Date')}} {{\App\CPU\translate('Total in Wishlist')}}
{{$products->firstItem()+$key}} {{ $data['name'] }} {{ date('d M Y', $data['created_at'] ? strtotime($data['created_at']) : null) }} {{ $data->wish_list->count() }}
{!! $products->links() !!}
@endsection @push('script') @endpush