@extends('layouts.auth.app') @section('title', 'Set Tax Office Target - ' . $viewModel['TaxOfficeName']) @section('content')

Operation Manager - Set Tax Office Target

{{ $viewModel['TaxOfficeName'] }}

Cancel

{{ $viewModel['TaxOfficeName'] }}

{{ $viewModel['TaxYearName'] }}

@csrf

Revenue Stream Target

@if(session('error'))
{{ session('error') }}
@endif @if(session('success'))
{{ session('success') }}
@endif
@php $totalYearly = 0; @endphp @foreach($taxOfficeTargetList as $item) @php $totalYearly += $item->TargetAmount ?? 0; @endphp @endforeach
Revenue Stream Yearly Monthly
{{ $item->RevenueStreamName }} {{ number_format(($item->TargetAmount ?? 0) / 12, 2) }}
Total {{ number_format($totalYearly, 2) }} {{ number_format($totalYearly / 12, 2) }}
@endsection @push('scripts') @endpush