@extends('layouts.app') @section('content')


@csrf

Date

xxz

Description

In

Out


@foreach($expense as $value)
{{ $value->created_at}}
{{ $value->description}}
@if($value->price_in > 0) {{ number_format($value->price_in)}}
Notice: Undefined variable: value in /home/cp136264/public_html/gha/resources/views/daily_expense.blade.php on line 65

Notice: Trying to get property 'price_in' of non-object in /home/cp136264/public_html/gha/resources/views/daily_expense.blade.php on line 65
@endif @if($value->price < 0) {{ number_format(abs($value->price))}}
Notice: Undefined variable: value in /home/cp136264/public_html/gha/resources/views/daily_expense.blade.php on line 68

Notice: Trying to get property 'price' of non-object in /home/cp136264/public_html/gha/resources/views/daily_expense.blade.php on line 68
@endif
@if($value->price_in < 0) {{ number_format(abs($value->price_in))}}
Notice: Undefined variable: value in /home/cp136264/public_html/gha/resources/views/daily_expense.blade.php on line 75

Notice: Trying to get property 'price_in' of non-object in /home/cp136264/public_html/gha/resources/views/daily_expense.blade.php on line 75
@endif @if($value->price > 0) {{ number_format($value->price)}}
Notice: Undefined variable: value in /home/cp136264/public_html/gha/resources/views/daily_expense.blade.php on line 78

Notice: Trying to get property 'price' of non-object in /home/cp136264/public_html/gha/resources/views/daily_expense.blade.php on line 78
@endif
@endforeach

{{number_format(abs($total_in))}}

{{number_format(abs($total_out))}}


Yesterday (Opening)

{{number_format($cash_yesterday)}}

Current (Closing) ::

{{number_format($cash)}}


@endsection