@extends('layouts.modern') @section('page-title', 'Server Details - ' . $server->name) @section('breadcrumb') @endsection @section('action-buttons') @if(auth()->user()->hasPermission('servers.edit')) Edit Server @endif @endsection @section('content')
Server Information

{{ $server->name }}

{{ $server->host }}

{{ $server->user }}

••••••••••••

{{ $server->id }}

Quick Actions
@if(auth()->user()->hasPermission('servers.edit')) Fields Mapping @endif Sync Stores @if(auth()->user()->hasPermission('servers.edit')) Edit Server @endif
Statistics

{{ $server->stores->count() }}

Associated Stores

{{ $server->fields_mappings ? 'Mapped' : 'Not Mapped' }}

Fields Mapping

{{ $server->fields_cloud ? 'Available' : 'None' }}

Cloud Fields

@if($server->stores->count() > 0)
Associated Stores ({{ $server->stores->count() }})
@foreach($server->stores as $store) @endforeach
Store Name Store ID Actions
{{ $store->name ?? 'N/A' }} {{ $store->store_id }} @if(auth()->user()->hasPermission('stores.view')) @endif
@endif
@endsection