@extends('layouts.app') @section('content')

골드박스


@if(count($goldBox['data']) > 0) @foreach($goldBox['data'] as $row)
{{ $row['productName'] }}
{{ $row['productName'] }}

{{ number_format($row['productPrice']) }}

@if($row['isRocket'])
로켓배송
@endif @if($row['isFreeShipping'])
무료배송
@endif
@endforeach @else
조회 결과가 없습니다.
@endif
@endsection