@extends('layouts.app') @section('title', 'سندات الاستلام - '.config('app.name')) @section('breadcrumb') الرئيسية المشتريات سندات الاستلام @endsection @push('styles') @endpush @section('content')

سندات الاستلام

الإجمالي {{ $receiveNotes->total() }}
@forelse($receiveNotes as $note) @empty @endforelse
رقم السند المورد أمر الشراء المستودع تاريخ الاستلام الحالة
{{ $note->code }} {{ $note->supplier->name ?? '—' }} {{ $note->purchaseOrder ? ($note->purchaseOrder->reference ?: '#' . $note->purchase_order_id) : '—' }} {{ $note->warehouse->name_ar ?? $note->warehouse->code ?? '—' }} {{ $note->receive_date?->format('Y-m-d') ?? '—' }} @if($note->status === 'completed') {{ $note->status_label }} @elseif($note->status === 'pending') {{ $note->status_label }} @else {{ $note->status_label }} @endif

لا توجد سندات استلام

يمكنك إنشاء سند استلام جديد باستخدام الزر أعلاه.

@if($receiveNotes->hasPages())
{{ $receiveNotes->links() }}
@endif
{{-- مودال استيراد سندات الاستلام --}}
@endsection