@extends('master.app') @section('title', 'Edit Expense') @section('body')
Edit Expense
Update expense entry
Back
@include('general.valert')
@csrf @method('PUT')
@php $cashChecked = old('cash_id'); if($cashChecked === null){ $cashChecked = (property_exists($expense,'c_target') && $expense->c_target==1) ? 1 : 0; } @endphp
Cancel
@endsection @section('pageJs') @endsection