@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