@extends('layouts.app') @section('content')
| Nama | Keterangan | Biaya per Klik | Kategori Bahan | Bahan | Status | Aksi |
|---|---|---|---|---|---|---|
| {{ $machine->name }} | {{ $machine->description ?? '-' }} | Rp {{ number_format($machine->cost_per_click, 0, ',', '.') }} |
@forelse ($machine->categories as $category)
{{ $category->name }}
@empty
-
@endforelse
|
@forelse ($machine->materials as $material)
{{ $material->name }}
@empty
-
@endforelse
|
{{ $machine->is_active ? 'Aktif' : 'Nonaktif' }} | |
| Belum ada data mesin | ||||||