@extends('backend-template') @section('content') @if(auth()->user()->can_sell || !auth()->user()->paysForListing())

Listings

@if(count($ads) > 0) @foreach($ads as $ad) @endforeach
Category Total
{{$ad->name}} {{$ad->category_count}}
@else

No items were found

@endif
@else

Listings {{$creditsAvailable}}

@if(isAdmin()) @include('profile.ads.add_credits',['credits'=>$creditsAvailable]) @endif

After using your allocation of free listings to advertise items in ‘antique & reclaimed’ ‘recraft’ ‘new & repro’ top up your listing credit by simply clicking on the ‘buy credits’ button. Listings are sold as bundles of {{$quantity}} for £{{$price}} inc vat.

@if(count($ads) > 0) @foreach($ads as $ad) @endforeach
Category Total
{{$ad->name}} {{$ad->category_count}}
@else

No items were found

@endif
Make new for sale listings
£{{$price}} inc vat for {{$quantity}} new listings
{{ csrf_field() }}
@endif @stop