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

Reportings

Reportings erstellen
@include('includes.errors')

Offen

@if ( count($reportings) == 0 )
Keine Reportings vorhanden.
@else @foreach ($reportings as $reporting) @include('reporting._reporting') @endforeach @endif

Verifiziert

{!! Form::open(['action' => 'ReportingController@send']) !!} {!! Form::close() !!}
@if ( count($v_reportings) == 0 )
Keine Reportings vorhanden.
@else @foreach ($v_reportings as $reporting) @include('reporting._reporting') @endforeach @endif @endsection @section('script') @endsection