@extends('master.app') @section('title', 'Edit Cash Entry') @section('body')
Edit Cash Entry
Update income/outgoing details
Back
@include('general.valert') @php $flow = ((float)$journal->income > 0) ? 'income' : 'outgoing'; $amount = ($flow === 'income') ? $journal->income : $journal->outgoing; @endphp
@csrf @method('PUT')
Cancel
@endsection @section('pageJs') @endsection