@extends('layouts.app') @section('title', $viewData["title"]) @section('subtitle', $viewData["subtitle"]) @section('content')
@if($errors->any()) @endif
@csrf
Source Collector
@if ($viewData['data']->count() == 0) Please select a customer to collect the sources @endif @foreach ($viewData['data'] as $active_customer) @if ($active_customer->count())

{{ $active_customer->get('customer_name') }}


Validity of Customer credentials : @if ($active_customer->get('token') === 1) OK @else NOK - warning @endif Editor API availability : @if ($active_customer->get('download') === 1) OK @else NOK - warning @endif FTP availability : @if ($active_customer->get('ftp') === 1) OK @else NOK - warning @endif


@foreach ($active_customer['source'] as $active_source) @endforeach
Sources Last collector date File name Collect source
{{ $active_source['source_name'] }} {{ $active_source['last_collect_date'] }} {{ $active_source['last_collect_file'] }}
@csrf
@csrf


@endif


@endforeach
@endsection