Finance Overview

{{ $project->title }}
{{ number_format($stats['total_hours'], 1) }}
Total Hours Logged
{{ number_format($stats['billable_hours'], 1) }}
Billable Hours
{{ number_format($stats['unbilled_hours'], 1) }}
Unbilled Hours
₹{{ number_format($stats['unbilled_amount'], 2) }}
Unbilled Amount

Billing Summary

Billing Method
{{ ucfirst(str_replace('_', ' ', $project->billing_method)) }}
@if($project->billing_method === 'fixed')
Fixed Amount
₹{{ number_format($project->fixed_amount, 2) }}
@else
Hourly Rate
₹{{ number_format($project->hourly_rate, 2) }}/hour
@endif
Total Billed Amount
₹{{ number_format($stats['billed_amount'], 2) }}
Total Unbilled Amount
₹{{ number_format($stats['unbilled_amount'], 2) }}
@if($stats['unbilled_amount'] > 0)

Invoice Actions

You have ₹{{ number_format($stats['unbilled_amount'], 2) }} ready to be invoiced

@endif @if($stats['unbilled_amount'] == 0 && $stats['total_hours'] > 0)

All Caught Up!

All billable hours have been invoiced

@endif