@extends('layouts.app') @section('title','Übersicht') @section('breadcrumb') @endsection @section('content') @include('image.workflow._navigation')

Übersicht

Import

@include('status._progress')

Kaputte Bilder

@if ( count($corrupt_images) > 0 ) @foreach ($corrupt_images as $image) @endforeach
Zeitstempel Bild MD5-Hash
{{ $image->created_at }} {{ $image->original_filename }} {{ $image->hash }} {!! Form::open(['action' => ['ImageController@destroy',$image],'method' => 'delete']) !!} {!! Form::close() !!}
@else Keine @endif

Fehler

@if ( count($import_failures) > 0 ) @foreach ($import_failures as $failure) @endforeach
Zeitstempel Schritt Bild  
{{ $failure->taskable->created_at or $failure->created_at }} {{ $failure->progress }} {{ $failure->taskable->original_filename or 'Bild existiert nicht.' }} {!! Form::open(['action' => ['StatusController@destroyImport',$failure],'method' => 'delete']) !!} {!! Form::close() !!}
@else Keine @endif

Picturemaxx

@include('status._getnumbers')
@include('status._upload')

Fehler

@if ( count($pm_failures) > 0) @foreach ($pm_failures as $failure) @endforeach
Zeitstempel Fehler Serie  
{{ $failure->updated_at }} {{ $failure->message }} {{ str_limit($failure->taskable->title,100) }} {!! Form::open(['action' => ['StatusController@restartPM',$failure],'class' => 'd-inline']) !!} {!! Form::close() !!} {!! Form::open(['action' => ['StatusController@destroyPM',$failure],'method' => 'delete','class' => 'd-inline']) !!} {!! Form::close() !!}
@else Keine @endif
@endsection @section('script') @endsection