@if($urlList && count($urlList))
@foreach ($urlList as $index => $urlItem)
{{-- Index --}}
{{ $index+1 }}
{{-- Title --}}
{{-- URL --}}
{{-- Actions --}}
@if(!isset($readonly) || (isset($readonly) && !$readonly))
{{-- Copy Button --}}
{{-- --}}
{{-- Delete Button --}}
@endif
@endforeach
@else
{{-- Empty State --}}
{{ __('labels.no_urls_added') }}
@endif