@extends('layouts.master') @section('title', __('home.Opening_entry')) @section('css') @endsection @section('content')
@csrf
{{ __('home.record_number') }} NEW {{ __('home.entry_date') }}
{{ __('home.general_note') }}
{{ __('home.stautes') }} {{ __('home.unbalanced') }} {{ __('home.total') }} 0.00
# {{ __('home.account_financial') }} {{ __('home.debit') }} {{ __('home.credit') }} {{ __('home.analytical_note') }}
{{ __('home.total') }} 0.00 0.00 {{ __('home.unbalanced') }}
{{ __('home.latest_entries') }}
@foreach($latest_entries as $entry) @endforeach
{{ __('home.record_number') }} {{ __('home.journal_entry_date') }} {{ __('home.journal_general_statement') }} {{ __('home.total') }} {{ __('home.actions') }}
{{ $entry->entry_number }} {{ $entry->entry_date }} {{ \Str::limit($entry->general_note, 50) }} {{ number_format($entry->total_amount, 2) }}
{{ $latest_entries->links() }}
@endsection @section('js') @endsection