@extends('layouts.modern') @section('page-title', 'Fields Mapping - ' . $server->name) @section('breadcrumb') @endsection @section('content')
@if (session('success')) @endif
Fields Mapping for {{ $server->name }}
@if(is_array($fieldsCloud) && count($fieldsCloud) > 0)
@csrf
@foreach ($fieldsCloud as $index => $fieldsCloudRow) @endforeach
# ESL Field SAP Field Status
{{ $index + 1 }} @if(isset($fields[$fieldsCloudRow->id]) && !empty($fields[$fieldsCloudRow->id])) Mapped @else Not Mapped @endif
Map ESL fields to corresponding SAP fields to enable data synchronization.
Back to Server
@else

No Cloud Fields Available

No cloud fields are available for mapping on this server.

Back to Server
@endif
@endsection