@extends('admin.main') @section('main')
| Product | ID | Qty | Price | Status | Actions |
|---|---|---|---|---|---|
| {{ $product->id }} | N/D | {{ formatMoney($product->price, true) }} |
@if(isset($product->is_archived) && $product->is_archived)
Archived
@else
Published
@endif
|