@extends('master.app') @section('title', 'Edit Investor Journal') @section('body')
Edit Investor Entry
Update entry
Back
@include('general.valert')
@csrf @method('PUT')
Fill only Income OR Outgoing.
@php $cashChecked = old('cash_id'); if ($cashChecked === null) { $cashChecked = property_exists($data, 'c_target') && $data->c_target == 1 ? 1 : 0; } @endphp
Cancel @csrf @method('DELETE')
@endsection @section('pageJs') @endsection