recommend.blade.php 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. @extends('mobile.layouts.app')
  2. @section('content')
  3. <div id="recommend" class="container-fluid">
  4. <div class="row">
  5. <div class="col text-center">
  6. <h3>쿠팡 PL</h3>
  7. <hr/>
  8. </div>
  9. </div>
  10. <div class="row">
  11. @if(count($recommend['data']) > 0)
  12. @foreach($recommend['data'] as $row)
  13. <div class="col-6 col-sm-4 col-md-3 col-lg-2 col-xxl-2">
  14. <figure class="figure">
  15. <a href="{{ $row['productUrl'] }}" target="_blank">
  16. <img src="{{ $row['productImage'] }}" class="figure-img img-fluid rounded" alt="{{ $row['productName'] }}"/>
  17. </a>
  18. <figcaption class="figure-caption">
  19. <a href="{{ $row['productUrl'] }}" target="_blank">{{ $row['productName'] }}</a>
  20. </figcaption>
  21. <p>{{ number_format($row['productPrice']) }} <small>원</small></p>
  22. @if($row['isRocket'])
  23. <div class="col-auto">
  24. <span class="badge text-bg-info text-light">
  25. <i class="bi bi-rocket-takeoff"></i> 로켓배송
  26. </span>
  27. </div>
  28. @endif
  29. @if($row['isFreeShipping'])
  30. <div class="col-auto">
  31. <span class="badge text-bg-warning">
  32. <i class="bi bi-truck"></i> 무료배송
  33. </span>
  34. </div>
  35. @endif
  36. </figure>
  37. </div>
  38. @endforeach
  39. @else
  40. <div class="col p-5 text-center">
  41. 조회 결과가 없습니다.
  42. </div>
  43. @endif
  44. </div>
  45. </div>
  46. @endsection