popup.blade.php 823 B

12345678910111213141516
  1. {{-- 팝업 --}}
  2. @isset($popups)
  3. <div id="layerPops">
  4. @foreach($popups as $pop)
  5. <div id="layerPop_{{ $loop->index }}" class="layer-pops ui-draggable ui-draggable-handle" tabindex="-1" data-key="{{ $loop->iteration }}" data-disable-hours="{{ $pop->disable_hours }}" style=" @if($pop->top) top: {{ $pop->top }}px; @endif @if($pop->left) left: {{ $pop->left }}px; @endif @if($pop->width) width: {{ $pop->width }}px; @endif @if($pop->height) height: {{ $pop->height }}px; @endif">
  6. <article>
  7. {{ $pop->content }}
  8. </article>
  9. <article>
  10. <button type="button" class="btn-closed">오늘 하루 안보기</button>
  11. <button type="button" class="btn-cancel">닫기</button>
  12. </article>
  13. </div>
  14. @endforeach
  15. </div>
  16. @endif