@extends('front.pages.account.index') @section('account_title') {{__('Wishlist')}} @endsection @section('css') @endsection @section('account_content')

{{__('Wishlist')}}

@if(count($favourite_products)) @foreach($favourite_products as $product) @endforeach @else @endif
{{__('Product')}} {{__('Price')}} {{__('Commission')}}
{{$product->name}}
@if($product->offer>0 && $product->offer_valid){{formated_price($product->offer )}} @else {{formated_price($product->new_price)}} @endif {{formated_price($product->commission)}}
{{__('Wishlist empty')}}
@endsection @section('account_scripts') @endsection