@extends('front.pages.account.index') @section('account_title') {{__('Wishlist')}} @endsection @section('css') @endsection @section('account_content') {{__('Wishlist')}} {{__('Product')}} {{__('Price')}} {{__('Commission')}} @if(count($favourite_products)) @foreach($favourite_products as $product) {{$product->name}} @if($product->offer>0 && $product->offer_valid){{formated_price($product->offer )}} @else {{formated_price($product->new_price)}} @endif {{formated_price($product->commission)}} @endforeach @else {{__('Wishlist empty')}} @endif @endsection @section('account_scripts') @endsection