@extends('layouts.masterHome2') @section('content') @php $time = date("G"); @endphp
@if( $show_button == "yes" ) بدأ اليوم

@else

📋 الفواتير اليومية

{{count($invoices)}}
@foreach( $invoices as $invoice ) @endforeach
التاريخ رقم الفاتورة العميل الخصم أجمالي السعر الحالة تفاصيل
{{$invoice->created_at}} #{{$invoice->id}} {{$invoice->client->name}} {{$invoice->discount}} {{$invoice->total_price}} @if ($invoice->confirmed == "confirmed") @elseif ( $invoice->confirmed == NULL ) Egwaste @else Egwaste @endif Details

📋 شيكات مستحقة الدفع /التحصيل

{{count($cheques)}}
@foreach( $cheques as $cheque ) @if($cheque->client_id) @elseif ( $cheque->payment_voucher_id && $cheque->payment_voucher->budget_id ) @elseif ( $cheque->payment_voucher_id && $cheque->payment_voucher->employee_id) @elseif ( $cheque->payment_voucher_id && $cheque->payment_voucher->car_id) @elseif ($cheque->payment_voucher_id && $cheque->payment_voucher->general_name ) @elseif (!$cheque->client_id ) @else @endif @endforeach
السريال تاريخ نشأة الشيك العميل نوع الشيك الرقم مسحوب علي تاريخ استحقاق الدفع المبلغ الحالة
{{$cheque->id}} {{$cheque->created_at}} {{$cheque->client->name}} {{ $cheque->payment_voucher->budget->name}} {{ $cheque->payment_voucher->employee->name }} {{ $cheque->payment_voucher->car_expense->name }} {{ $cheque->payment_voucher->general_name }} {{ $cheque->general_name }} @if($cheque->invoice_id) # {{$cheque->invoice_id}}    فاتورة    @elseif( $cheque->payment_voucher_id ) {{ $cheque->payment_voucher->type}} @else( $cheque->client_id && ! $cheque->invoice_id ) سند قبض عام @endif #{{$cheque->serial}} {{$cheque->bank->name }} {{$cheque->date}} {{$cheque->pay}} @if($cheque->status == Null) Waiting... @elseif( $cheque->status == "Accepted" ) تم الصرف @else( $cheque->status == "Rejected" ) تم الرفض @endif

📋 سندات القبض اليومية

{{count($receipts)}}
@foreach( $receipts as $receipt ) @endforeach
السريال تاريخ نشأة السند العميل الفاتورة المبلغ ايداعات/شيكات الحسابات الاخري التبويب نظير ملاحظات -
{{$receipt->id}} {{$receipt->created_at}} {{$receipt->client_id ? $receipt->client->name:'تغذية خزنة /'}} {{$receipt->general_name}} {{$receipt->invoice_id ? "#". $receipt->invoice_id:""}} {{$receipt->pay}} {{$receipt->cheque_id ? "#".$receipt->cheque_id:"" }} {{$receipt->safe_account ? $receipt->safe_account->payment_method->name ." -- ".$receipt->safe_account->branch->name :""}} {{ $receipt->tab_id ? $receipt->tab->name : '' }}
{{$receipt->note1}} {{$receipt->note2}}

📋 سندات الصرف اليومية

{{ count($payment_vouchers) }}
@foreach( $payment_vouchers as $voucher ) @if($voucher->type == 'سند صرف عام') @elseif ($voucher->type == 'سند صرف موظفين') @elseif ($voucher->type == 'سند صرف ميزانية') @elseif ($voucher->type == 'سند صرف سيارات') @elseif ($voucher->type == 'سند صرف عهدة غير مربوطة بمبلغ') @elseif ($voucher->type == 'سند صرف عهدة مربوطة بمبلغ') @endif @if($voucher->type == 'سند صرف عام') @elseif ($voucher->type == 'سند صرف موظفين') @elseif ($voucher->type == 'سند صرف ميزانية') @elseif ($voucher->type == 'سند صرف سيارات') @elseif ($voucher->type == 'سند صرف عهدة غير مربوطة بمبلغ') @elseif ($voucher->type == 'سند صرف عهدة مربوطة بمبلغ') @endif @endforeach
السريال تاريخ نشأة السند النوع المبلغ ايداعات/شيكات الحساب مصروف لـ التبويب نظير ملاحظات Approved by -
{{$voucher->id}} {{$voucher->created_at}} {{$voucher->type}} {{$voucher->pay}} {{$voucher->cheque_id ? "#".$voucher->cheque_id:"" }} {{$voucher->safe_account ? $voucher->safe_account->payment_method->name ." -- ".$voucher->safe_account->branch->name :""}} {{$voucher->general_name}} {{$voucher->employee->name}} {{$voucher->general_name}} {{$voucher->general_name}} {{$voucher->general_name}} {{$voucher->general_name}} {{ $voucher->tab_id ? $voucher->tab->name : '' }}
{{$voucher->note1}} {{$voucher->note1}} {{$voucher->budget->name}} {{$voucher->car->num}} {{$voucher->trust->name}} {{$voucher->trust->name}} {{$voucher->note2}} ✔ {{$voucher->admin->name}} @if ( $voucher->approve == "Approved" || $voucher->approve == "Rejected" ) @endif









@endif @endsection