{{-- Resource records history --}}
{{-- Assign Employees/resources --}}
@php
$assignedEmployees = json_decode($project->assigned_employee);
@endphp
@error('assigned_employee')
{{ $message }}
@enderror
Resources Name and Cost (INR)
{{-- Display Selected Resources and Monthly Rates --}}
Resource |
Duration |
Duration Type |
Calculated Rate |
{{-- Total Resource Cost --}}
@error('total_resource_cost')
{{ $message }}
@enderror
Fixed Cost Summary
{{-- Calculation for fixed expenses --}}
0.00
0.00
0.00
{{-- Actual Cost records for fixed --}}
{{-- EXPENSE Heads --}}
FIXED EXPENSES :
Other/Variables Cost Summary
{{-- Calculation for other expenses --}}
0.00
0.00
0.00
{{-- Actual Cost records for others --}}
{{-- OTHER EXPENSE Heads --}}
Other/Variable Expenses :
@php
$otherCosts = json_decode($project->other_costs, true); // true = array
@endphp
{{-- Submit Button --}}