@extends('layouts.app') @section('content')
Finance
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf
Catagory :

Description :
Price :


Company Expenses Entry

Date

Description

Price

Delete


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

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


Total Expense

0


@endsection