@extends("common.layout-popup") @section("page-title", "[결제관리] 상품검색") @section("content")
* 회원이 이미 수강중인 상품은 목록에서 비노출됩니다
@csrf
전체 판매중 마감
전체 @foreach($modules as $module) {{ $module }} @endforeach
조회결과 {{ $list ? $list->total() : 0 }}건, 선택된 옵션 0
@foreach ($list as $item) @endforeach
상품번호 판매여부 카테고리 상품명 옵션명 핀매가 소비자가 모듈
{{ $item->product_id }} {{ $item->product->is_sellable == 1 ? "판매중" : "마감" }} {{ isset($item->product->productCategories[0]) ? $item->product->productCategories[0]->name : '' }} {{ $item->product->name }} {{ $item->name }} {{ number_format($item->sales_price) }} {{ number_format($item->consumer_price) }} {{ $item->product->module }}
@endsection @push("script") @endpush