@extends('layouts.admin') @section('title', 'Product | Mintavia Admin') @push('css') @endpush @section('content')
@if (isset($message) && $message) @endif

JOURNAL ENTRY Edit

@csrf {{-- First Row --}}
{{-- Second Row --}}
{{-- Sirf ek baar yeh option hona chahiye --}} @foreach ($accounts as $account) @endforeach
{{-- Table --}}
@forelse ($journal_entries as $entry) @empty @endforelse
Dr/Cr Account Name Dr Amt Cr Amt Remark
{{ $entry->dr_cr }} {{ $entry->account ? $entry->account->name : '' }} {{ $entry->dr_cr == 'Dr' ? $entry->amount : '' }} {{ $entry->dr_cr == 'Cr' ? $entry->amount : '' }} {{ $entry->remark }}
No entries found.
{{-- Save Button --}}
@endsection @section('js') @endsection