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

Listings

It is free to list dismantling & demolition alerts, wanted alerts and theft alerts for stolen items.

@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 @if (!auth()->user()->isPrivateUser())

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.

@else

It is free to list dismantling & demolition alerts, wanted alerts and theft alerts for stolen items.

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

No items were found

@endif
@if (!auth()->user()->isPrivateUser())
Make new for sale listings
£{{$price}} inc vat for {{$quantity}} new listings
{{ csrf_field() }}
@endif @endif @stop