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

@lang('front.fav ')

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

@lang('front.There_are_no_products')

@endif
@endsection