@extends('admin::layout.layout') @section('title', __('admin::lang.Manage Content') . ' - ' . $placement->getTranslation('name', app()->getLocale())) @section('content')
{{ __('admin::lang.Type') }}
{{ $placement->type->label() }}
{{ __('admin::lang.Location') }}
{{ $placement->location }}
{{ __('admin::lang.Desktop Size') }}
{{ $placement->settings['display']['devices']['desktop']['width'] ?? 'N/A' }}x{{ $placement->settings['display']['devices']['desktop']['height'] ?? 'N/A' }}
{{ __('admin::lang.Tablet') }}: {{ $placement->settings['display']['devices']['tablet']['width'] ?? 'N/A' }}x{{ $placement->settings['display']['devices']['tablet']['height'] ?? 'N/A' }}
{{ __('admin::lang.Mobile') }}: {{ $placement->settings['display']['devices']['mobile']['width'] ?? 'N/A' }}x{{ $placement->settings['display']['devices']['mobile']['height'] ?? 'N/A' }}
{{ __('admin::lang.Max Items') }}
{{ $placement->settings['slider_config']['max_items'] ?? 'Unlimited' }}
@if($placement->type === \App\Support\Enum\PlacementTypeEnum::HEADER) @elseif($placement->type === \App\Support\Enum\PlacementTypeEnum::FOOTER) @else @endif
@endsection