@extends('layouts.app')
@section('title','Gutschriften')
@section('breadcrumb')
@endsection
@section('content')
@if ( count($listings) > 0 )
@foreach($listings as $listing)
@include('client._listing')
@endforeach
@else
Keine Gutschriften.
@endif
@include('pagination.default',['paginator' => $listings])
@endsection
@section('script')
@endsection