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

인기상품


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

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

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