@extends('layouts.app') @section('title', 'Job Costing') @section('breadcrumbs') @endsection @section('content')
Track costs against specific jobs or orders
| 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 | ||||||