@extends('layouts.app') @section('title', 'إشعارات المديونية - '.config('app.name')) @section('breadcrumb') الرئيسية المحاسبة إشعارات المديونية @endsection @section('content')

إشعارات المديونية

إدارة إشعارات مديونية الموردين

+ إشعار مديونية جديد

قائمة إشعارات المديونية

@php $debitNoteStatusOpts = [ ['value' => '', 'label' => 'الكل'], ['value' => 'draft', 'label' => 'مسودة'], ['value' => 'approved', 'label' => 'معتمد'], ['value' => 'cancelled', 'label' => 'ملغى'], ]; @endphp
@forelse($debitNotes as $note) @empty @endforelse
رقم الإشعار المورد التاريخ المبلغ الإجمالي الحالة إجراءات
{{ $note->note_number }} {{ $note->supplier->name }} {{ optional($note->date)->format('Y-m-d') }} {{ number_format((float) $note->amount + (float) $note->tax_amount, 2) }} @if($note->status === 'approved') معتمد @elseif($note->status === 'cancelled') ملغى @else مسودة @endif @php $dnMenuId = 'debit-note-actions-'.$note->id; @endphp @if($note->status === 'draft')
@csrf
تعديل الإشعار
@csrf @method('DELETE')
@elseif($note->status === 'approved') عرض الإشعار
@csrf
@else عرض الإشعار @endif
لا توجد إشعارات مديونية
@if($debitNotes->hasPages())
{{ $debitNotes->links() }}
@endif
@endsection