@extends('layouts.pdf') @section('title') {{ $extra['module_name'] }} @endsection @php $general_settings = \App\Models\Setting::generalBuilder(); $company_name = $general_settings->company_name ?? ''; @endphp @section('content') {{-- Custom Styling --}} {{-- End Custom Styling --}}
@include('admin.partials.header', ['extra' => $extra])

{{ $extra['module_name'] }}


{{__('lang.work_order_no')}} : {{$item->voucher_no}} {{__('lang.work_order_date')}} : {{$transaction->date_format($item->work_order_date) ?? '-'}}
{{__('lang.project')}} : {{$item->branch->name ?? '-'}} {{__('lang.location')}} : {{$item->branch->location ?? '-'}}
{{__('lang.type_of_work')}} : {{$item->work->name ?? '-'}} {{__('lang.phone')}} : {{$item->contractor->phone ?? '-'}}
{{__('lang.contractor')}} : {{$item->contractor->name ?? '-'}} {{__('lang.cnic')}} : {{$item->contractor->cnic ?? '-'}}

@foreach($item->work_order_items as $work_order_item) @endforeach
{{__('lang.sno')}} {{__('lang.work_item')}} {{__('lang.quantity')}} {{__('lang.unit')}} {{__('lang.rate')}} {{__('lang.remarks')}}
{{$loop->iteration}} {{$work_order_item->work_items->name}} {{$work_order_item->qty}} {{$work_order_item->work_items->itemUnit->name}} {{$work_order_item->rate}} {{$work_order_item->description ?? '-'}}
{{-- --}} {{-- --}} {{-- --}}
{{__('lang.start_date')}} : {{$transaction->date_format($item->start_date) ?? '-'}} {{__('lang.completion_date')}} : {{$transaction->date_format($item->end_date) ?? '-'}}
{{__('lang.maintenance_duration')}} : {{$item->maintenance_duration." ".$item->maintenance_type}} {{__('lang.billing')}} : {{-- Weekly/Fortnightly/Monthly --}} : {{ucfirst($item->billing_type) ?? '-'}}
Specification Ref. : Drg. Ref. :
{{__('lang.delay_penalty')}} : {{$transaction->convert_money_format($item->delay_penalty) ?? '-'}} {{__('lang.penalty_limit')}} : {{$transaction->convert_money_format($item->penalty_limit) ?? '-'}}
{{__('lang.retention_money')}} : {{$transaction->convert_money_format($item->retention_money) ?? '-'}} {{__('lang.to_be_released')}} : {{$item->payment_release_duration." ".$item->payment_release_type}}
{{__('lang.advance_payment')}} :{{$transaction->convert_money_format($item->advance_amount) ?? '-'}}{{__('lang.deductable_at')}} : -
{{__('lang.income_tax')}} : -
@endsection