@extends('layouts/contentNavbarLayout') @section('title', 'Product Details') @section('vendor-script') @endsection @section('content')
| Product Name | {{ $product->name ?? '-' }} |
| Level | {{ $product->level->title ?? '-' }} |
| Related Course | {{ $product->course->name ?? '-' }} |
| Category | {{ $product->category->name ?? '-' }} |
| Price | ${{ number_format($product->price, 2) }} |
| Description | {!! $product->description !!} |