@extends('layouts.app') @section('title', __('accounting::lang.journal_entry')) @section('content') @include('accounting::layouts.nav')

@lang( 'accounting::lang.journal_entry' )

@php $report = session('report'); @endphp @if ($report) @component('components.widget', ['class' => 'box-primary'])
ملخص الاستيراد
@foreach ([ 'total' => 'عدد الصفوف الكلي', 'added' => 'المضافة', 'missing_account' => 'الحساب المفقود', 'missing_contact' => 'العميل المفقود', 'missing_amount' => 'دائن / مدين مفقود', ] as $k => $label)
{{ $label }}
{{ $report[$k] ?? 0 }}
@endforeach
تفاصيل الرسائل
@forelse ($report['details'] as [$row, $status, $msg]) @empty @endforelse
# رقم الصف الحالة الرسالة
{{ $row }} {{ $status }} {{ $msg }}
لايوحد بيانات تم رفعها
@endcomponent @endif
@component('components.filters', ['title' => __('report.filters')])
{!! Form::label('journal_entry_date_range_filter', __('report.date_range') . ':') !!} {!! Form::text('journal_entry_date_range_filter', null, ['placeholder' => __('lang_v1.select_a_date_range'), 'class' => 'form-control', 'readonly']); !!}
@endcomponent
@component('components.widget', ['class' => 'box-solid']) @can('accounting.add_journal') @slot('tool')
@lang('messages.add')
@lang('accounting::lang.import_journal_entry')
@endslot @endcan
@lang('messages.action') @lang('lang.location') @lang('accounting::lang.journal_date') @lang('purchase.ref_no') @lang('lang.total') @lang('lang.added_by') @lang('lang.additional_notes')
@endcomponent
@stop @section('javascript') @endsection