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

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

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