@extends(AdminBaseDashboard::AdminBaseLayout()) @section('title', trans('acc::account.All store transactions and journal history')) @section('content')

{{ __('acc::account.journal memo')}}

{{ __('acc::account.total debit') }}: {{ Account::format_payment($debit) }}

{{ __('acc::account.total credit') }}: {{ Account::format_payment($credit) }}

{{ __('acc::account.export') }} {{ __('acc::account.export pdf') }} {{ __('acc::account.reload') }}
@if(count ($myjournal) > 0) @foreach($myjournal as $journal) @endforeach @endif @forelse($myjournal as $journal) @empty @endforelse {{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- --}}
#{{__('acc::account.id')}} {{__('acc::account.account number')}} {{__('acc::account.reference')}} {{__('acc::account.description')}} {{__('acc::account.debit')}} (Dr) {{__('acc::account.credit')}} (Cr) {{ __('acc::account.device') }} {{__('acc::account.date')}}
{{ $loop->iteration }} {{ $journal->account_number }} {{ $journal->reference }} {{ $journal->description }} {{ Account::format_payment($journal->debit) }} {{ Account::format_payment($journal->credit) }} {{ $journal->device }} {{ $journal->created_at }}
#{{__('acc::account.id')}}{{__('acc::account.account number')}}{{__('acc::account.reference')}}{{__('acc::account.description')}}{{__('acc::account.debit')}} (Dr){{__('acc::account.credit')}} (Cr){{ __('acc::account.device') }}{{__('acc::account.date')}}
@endsection