@extends('layouts.app') @section('title', 'Spare Part') @section('breadcrumb') @endsection @section('content')
Reset
@forelse($spareParts as $part) @empty @endforelse
Kode Nama Brand Satuan Harga Beli Harga Jual Stok Status Aksi
{{ $part->code }} {{ $part->name }} {{ $part->brand ?? '-' }} {{ $part->unit }} Rp {{ number_format($part->cost_price, 0, ',', '.') }} Rp {{ number_format($part->sell_price, 0, ',', '.') }} {{ $part->stock }} / min {{ $part->min_stock }} @if($part->is_low_stock) Stok Rendah @else Normal @endif
@csrf @method('DELETE')
Tidak ada data spare part
@endsection