@extends('user.layout') @section('profile-title') {{ $user->name }}'s Wishlists @endsection @section('profile-content') {!! breadcrumbs(['Users' => 'users', $user->name => $user->url, 'Wishlists' => $user->url . '/wishlists']) !!}

Wishlists

{!! 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