@section('title', 'Merchandise')
@section('top-menu-items')
|
| --}}
Product Name | Revenue Type | Price | Tax | Availability | @can('write_products')Actions | @endcan
|---|---|---|---|---|---|---|
|
| --}}
{{ $product->name }} | {{ $product->revenue_type }} | {{ $product->price }} |
@if ($product->taxes->isEmpty())
'N/A'
@else
@foreach ($product->taxes as $tax)
{{ $tax->name }}
({{ $tax->percentage ? $tax->percentage . '%' : '$' . $tax->fixed }})
@endforeach @endif |
{{ $product->availability ? 'Available' : 'Not Available' }} | @can('write_products')Actions | @endcan