@extends('layouts.app') @section('title', $title) @section('subtitle', $subtitle) @push('css') @endpush @section('content')
| No | Nama | Kode Produk | Barcode | Deskripsi | Harga Beli | Harga Jual | Stok | Gambar | Action | |
|---|---|---|---|---|---|---|---|---|---|---|
| {{ $loop->iteration }} | {{ $p->name }} | {{ $p->code_product }} | {!! !empty($p->barcode) ? \App\Helpers\BarcodeHelper::generateBarcode($p->barcode) : 'No Data' !!} | {{ $p->description ?: 'No Data' }} | Rp {{ number_format($p->purchase_price, 0, ',', '.') }} | Rp {{ number_format($p->cost_price, 0, ',', '.') }} | {{ $p->stock }} |
|
Show @can('product-edit') Edit @endcan @can('product-delete') @endcan |