@extends('procurement::layouts.master') @section('title','Approved Vendor List') @section('content') @include('procurement::components.partials.page_header',['title'=>'Approved Vendor List','actionRoute'=>route('procurement.avl.create'),'actionLabel'=>'Add AVL Entry'])
@forelse($avl as $a) @empty @endforelse
ComponentManufacturer / Part #SupplierStatusQualified DateQualified ByNotes
{{ Str::limit($a->component->description,35) }} {{ $a->component->manufacturer }}
{{ $a->component->part_number ?: '—' }}
{{ $a->supplier->name }} {{ ucfirst($a->status) }} {{ $a->qualification_date?->format('M j, Y') ?? '—' }} {{ $a->qualified_by ?: '—' }} {{ Str::limit($a->notes,40) }} Edit
@csrf @method('DELETE')
No AVL entries yet.
{{ $avl->links() }} @endsection