@extends('layouts.app') @section('title','Gutschriften Archiv') @section('breadcrumb') @endsection @section('content')

Alte Gutschriften {{ $date_select[$current_select] }}

{!! Form::open(['action' => 'CreditListingController@archivePost','method' => 'post','class' => 'd-inline']) !!} {!! Form::select('month_select',$date_select,$current_select,['class' => 'form-control','autocomplete' => 'off']) !!} {!! Form::close() !!}
@if ( count($listings) == 0 )
Keine alten Gutschriften.
@else @foreach($listings as $listing) @include('billing._archive') @endforeach @endif @endsection