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

쿠팡 PL


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

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

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