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

Ü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

@if ( $pm_api_status )
@if ( $pm_api_status == 'failed' ) {!! Form::open(['action' => 'StatusController@destroyPMapi','method' => 'delete']) !!} {!! Form::close() !!} @else @endif
Status: {{ $pm_api_status }}
@else
@if ( $pm_api_image_count == 0 ) @else {!! Form::open(['action' => 'StatusController@startPMapi']) !!} {!! Form::close() !!} @endif
@endif
Hochgeladene Bilder: {{ $pm_api_image_count }}
@if ( count($pm_progress_bars) > 0 ) @each('components.progress_bar',$pm_progress_bars,'bar') @endif

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