@extends('layouts.app') @section('content')
@foreach($products['data'] as $row)
{{ $row['productName'] }}
{{ $row['productName'] }}

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

@if($row['isRocket'])
로켓배송
@endif @if($row['isFreeShipping'])
무료배송
@endif
@endforeach
@endsection