@extends('layouts.app') @section('content')

تفاصيل الحركة

تعديل
@csrf @method('DELETE')

{{ $t->type == 'in' ? 'حركة وارد' : ($t->type == 'out' ? 'حركة صادر' : 'نقل مخزون') }}

{{ $t->created_at->format('Y-m-d H:i') }}
الكمية
{{ $t->quantity }} {{ $t->item->unit ?? '' }}
المرجع
{{ $t->reference ?? '—' }}
بيانات مرتبطة
@if($t->sourceDonation)
مصدر التبرع
{{ $t->sourceDonation->donor->name ?? 'فاعل خير' }}
@if($t->sourceDonation->delegate)
بواسطة: {{ $t->sourceDonation->delegate->name }}
@endif
تبرع #{{ $t->sourceDonation->id }}
@endif @if($t->beneficiary)
المستفيد
{{ $t->beneficiary->full_name }}
@endif @if($t->project)
المشروع
{{ $t->project->name }}
@endif @if($t->campaign)
الحملة
{{ $t->campaign->name }}
@endif @if(!$t->sourceDonation && !$t->beneficiary && !$t->project && !$t->campaign)
لا توجد بيانات مرتبطة إضافية
@endif
@endsection