@extends('procurement::layouts.master')
@section('title','AVL Entry')
@section('content')
AVL — {{ $avl->component->description }} / {{ $avl->supplier->name }}
- Component
- {{ $avl->component->description }}
- Part Number
{{ $avl->component->part_number ?: '—' }}
- Supplier
- {{ $avl->supplier->name }}
- Status
- {{ ucfirst($avl->status) }}
- Qualification Date
- {{ $avl->qualification_date?->format('M j, Y') ?? '—' }}
- Qualified By
- {{ $avl->qualified_by ?: '—' }}
@if($avl->notes)
- Notes
- {{ $avl->notes }}
@endif
@endsection