@extends('main') @section('styles') @endsection @section('content')

{!! __('Wishlist') !!}

@if (sizeof(Cart::instance('wishlist')->content()) > 0)
@foreach (Cart::instance('wishlist')->content() as $item) @endforeach
  {{ __('Item') }} {{ __('Price') }}
{{ $item->name }}

{{ $item->name }}

{{ $item->price }} {{ __('EGP') }}
@if ($item->model->stock > 0)

{!! __('Availability now') !!}

@else

{!! __('Not available now') !!}

@endif
{!! csrf_field() !!}
{!! csrf_field() !!}
{!! __('Continue Shopping') !!}
{!! csrf_field() !!}
@else

{{ __('Favorite empty') }}



{!! __('Continue Shopping') !!}
@endif
@widget('Sidebar\DeliveryReturns')
@endsection @section('scripts') @endsection