@extends('home.user_shops.layout') @section('home.user_shops-title') Shops @endsection @section('home.user_shops-content') {!! breadcrumbs(['My Shops' => 'user-shops']) !!}

Shops

Here is a list of your user-owned shops.

The sorting order reflects the order in which the shops will be listed on the shop index.

@if (Settings::get('user_shop_limit') > 0)

You may make a maximum of {{ Settings::get('user_shop_limit') }} shops.

@endif
Create New Shop
@if (!count($shops))

No item shops found.

@else @foreach ($shops as $shop) @endforeach
{!! $shop->displayName !!} View sale history... Edit
{!! Form::open(['url' => 'user-shops/sort']) !!} {!! Form::hidden('sort', '', ['id' => 'sortableOrder']) !!} {!! Form::submit('Save Order', ['class' => 'btn btn-primary']) !!} {!! Form::close() !!}
@endif @endsection @section('scripts') @parent @endsection