@extends('layouts.app-admin') @section('content')
| Product | Number | Type | License Type | Price | Created | Actions | |
|---|---|---|---|---|---|---|---|
|
{{ $product['name'] }}
{{ Str::limit($product['description'], 30) }}
|
{{ $product['number'] }} | {{ ucfirst($product['type']) }} | @if ($product['license_type']) {{ ucfirst($product['license_type']) }} @else - @endif | Rp {{ number_format($product['price'], 0, ',', '.') }} | {{ \Carbon\Carbon::parse($product['created_at'])->format('d M Y') }} |
|