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


Car Expenses

Model

Expense


@foreach($car_expense as $value) @if(is_null($value->name)) @continue @endif
{{ $value->name}} : {{ $value->model}}
{{ number_format($value->price)}}
Notice: Undefined variable: value in /home/cp136264/public_html/gha/resources/views/car_expense.blade.php on line 43

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

{{number_format($total)}}


Company Expenses
@csrf

Date

Catagory

Description

Amount


@foreach($expense_expense as $value)
{{ $value->created_at}}
{{ $value->catagory}}
{{ $value->description}}
{{ number_format(abs($value->price))}}
Notice: Undefined variable: value in /home/cp136264/public_html/gha/resources/views/car_expense.blade.php on line 121

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

{{number_format(abs($total))}}

@endsection