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

تسجيل الامانات

@csrf

رقم الصندوق


@if (isset($deposit->receiving_deposit->receiving_cash) && count($deposit->receiving_deposit->receiving_cash))

المبالغ المسلمة

@foreach ($deposit->receiving_deposit->receiving_cash as $item) @endforeach
# نوع العملة مقدار المبلغ تاريخ الاستلام اسم المستلم رقم الهوية الجنسية
{{ $loop->iteration }} {{ $item->deposit_cash?->currency?->name }} {{ $item->amount }} {{ $item->delivery_date_hijri }} {{ $item->deposit_people?->full_name }} {{ $item->deposit_people?->id_number }} {{ $item->deposit_people?->nationality?->name }}
@endif @if (count($deposit_cashes)) @endif {{-- --}}
@if (isset($deposit->receiving_deposit->receiving_corporeal) && count($deposit->receiving_deposit->receiving_corporeal))

الأمانات المسلمة

@foreach ($deposit->receiving_deposit->receiving_corporeal as $item) @endforeach
# وصف الأمانة تاريخ الاستلام اسم المستلم رقم الهوية الجنسية
{{ $loop->iteration }} {{ $item->deposit_corporeal->description }} {{ $item->delivery_date_hijri }} {{ $item->deposit_people?->full_name }} {{ $item->deposit_people?->id_number }} {{ $item->deposit_people?->nationality?->name }}
@endif @if (count($deposit->deposit_corporeal)) @endif
@endsection @section('script') @include('safety.receiving.script') @endsection