@extends('frontend.bigbag.layouts.app') @section('content')

{{ __('Wishlist') }}

@foreach(\Cart::instance('wishlist')->content() as $row) @endforeach
{{ __('Image') }} {{ __('Name') }} {{ __('Price') }} {{ __('View') }}
× {{ $row->name }} @foreach ($row->options->attribute as $attribute)

{{ $attribute->attribute->name }} : {{ $attribute->variation->name }}

@endforeach @foreach ($row->options->options as $op) {{ $op->name }}, @endforeach
{{ amount_format($row->price) }} {{ __('View') }}
@endsection