@extends('front.layout.master') @section('content')

@lang('front.Exclusive_Products')

@if ($data->count() > 0 ) @foreach($data as $product)
@lang('front.exclusive') @if(auth()->user() == null) @else @endif
{{$product->name}}
{{number_format($product->discount , 3)}}@lang('front.KD') {{number_format($product->mainprice , 3)}}
@endforeach @else

@lang('front.There_are_no_products_in_your_favourites')

@endif
@endsection