@extends('admin.default') @section('page-header')
Wishlist items
@if(count($items) == 0)

No record found

@else @foreach($items as $item) @endforeach @endif
# Item Type Item preview Added On
{{$item->wishlist_id}} {{config('variables.item_type')[$item->item_type]}} @if($item->item_type == 1) @elseif($item->item_type == 2) @endif {{$item->created_at}}
@stop