@extends('home.layout') @section('home-title') Wishlists @endsection @section('home-content') {!! breadcrumbs(['Wishlists' => 'wishlists']) !!}

Wishlists
Create Wishlist

These are your item wishlists. Click on the name of any wishlist to be taken to its page, where you can view and edit it as well as the items in it. Note that wishlists do not automatically update.

{!! Form::open(['method' => 'GET', 'class' => '']) !!}
{!! Form::text('name', Request::get('name'), ['class' => 'form-control', 'placeholder' => 'Name']) !!}
{!! Form::select( 'sort', [ 'alpha' => 'Sort Alphabetically (A-Z)', 'alpha-reverse' => 'Sort Alphabetically (Z-A)', 'newest' => 'Newest First', 'oldest' => 'Oldest First', ], Request::get('sort') ?: 'category', ['class' => 'form-control'], ) !!}
{!! Form::submit('Search', ['class' => 'btn btn-primary']) !!}
{!! Form::close() !!}
{!! $wishlists->render() !!}
Name
Default
@foreach ($wishlists as $wishlist)
{{ $wishlist->name }}
@endforeach
{!! $wishlists->render() !!} @endsection @section('scripts') @endsection