@extends('admin.layouts.app') @section('title', 'Products') @section('page-title', 'Products') @section('content')
| Image | Name | Category | Price | Availability | Actions | |
|---|---|---|---|---|---|---|
|
@if($product->primaryImage)
|
{{ $product->name }} | {{ $product->category->name }} |
@if($product->is_on_sale)
R{{ number_format($product->sale_price, 2) }}
R{{ number_format($product->price, 2) }}
@else
R{{ number_format($product->price, 2) }}
@endif
|
@if($product->availability) Available @else Unavailable @endif | ||
|
No products found. Create your first product |
||||||