@extends('layouts.app') @section('content')
@if (session('success'))
{{ session('success') }}
@endif @if (session('error'))
{{ session('error') }}
@endif @if ($errors->any())
@endif 📥 Download Sample CSV
@csrf

Sign Materials

+ Add Material
@forelse ($materials as $index => $material) @empty @endforelse
# Name Price Product Code Unit (UOM) Dense Weight Per UOM Action
{{ $index + 1 }} {{ $material->name }} @if ($material->price !== null) ${{ $material->price }} @else — @endif {{ $material->product_code ?? 'N/A' }} {{ $material->uom ?? '—' }} {{ $material->dense_weight_per_uom ?? '—' }} Edit
@csrf @method('DELETE')
No materials found.
@endsection