@extends('account_layout') @section('account_content')
@if(count($_wishlist) > 0)
My Wishlist
@foreach($_wishlist as $wishlist)
{{ get_product_first_name($wishlist->product) }}
{{ limit_char(get_product_first_description($wishlist->product), 483) }}
Price: {{ get_product_first_price($wishlist->product) }}
@endforeach @else

Your wishlist is empty

@endif
@endsection @section('css') @endsection @section('script') @endsection