@extends('layouts.app') @section('title', 'Job Costing') @section('breadcrumbs') @endsection @section('content')

Job Costing

Track costs against specific jobs or orders

New Job Cost
@forelse($jobCostings ?? [] as $job) @empty @endforelse
Job # Description Type Estimated Cost Actual Cost Variance Actions
{{ $job->job_number }} {{ $job->description }} {{ ucfirst($job->type) }} {{ number_format($job->estimated_cost, 2) }} {{ number_format($job->actual_cost, 2) }} @php $variance = $job->estimated_cost - $job->actual_cost; @endphp {{ number_format($variance, 2) }}

No job costing records found

@endsection