@extends('admin.layouts.app') @section('content')
@if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif
{{-- Back --}}
@csrf @method('PUT')

Performa Invoice No : {{ $taplContract->performa_invoice_no ?? 'Unknown' }}

Work Order No : {{ $taplWorkOrder->work_order_no ?? 'Unknown' }}

Work Order Date : {{ $taplContract->created_at->format('Y-m-d') ?? 'Unknown' }}

Work Order Amount : {{ $taplWorkOrder->performa_amount ?? 'Unknown' }}

Type Of Billing : {{ $taplWorkOrder->type_of_amc ?? 'Unknown' }}

Frequency : {{ count($taplBillingFrequency) ?? 'Unknown' }}

@for/each($taplBillingFrequency as $billing)
SL.No Billing Month Amount Bill No Date Action
@endforeach
{{-- Save & Print --}}
@endsection