@extends('admin.layout.master') @section('title', 'Purchase Contract Print') @section('content')
| Contract No | {{ $contract->contract_no }} | Contract Date | {{ $contract->contract_date }} |
|---|---|---|---|
| Contract Name | {{ $contract->name }} | Contract For | {{ $contract->for }} |
| Contract Group | {{ $contract->getGroup->name ?? '' }} | Contract Type | {{ $contract->getType->name ?? '' }} |
| Cost Center | {{ $contract->costCenter->name ?? '' }} | Refference No. | {{ $contract->ref_no }} |
| Start Date | {{ $contract->start_date }} | End Date | {{ $contract->end_date }} |
| Description | {{ $contract->description }} | Contract Amount | {{ $contract->invoice_amount }} |
| Vendor | {{ $contract->vendor->name_eng ?? '' }} | Ledger | {{ $contract->ledger->name ?? '' }} |
| Date | Job should be done | Amount | Job Completed | Voucher |
|---|---|---|---|---|
| {{ date("d-m-Y", strtotime($item->date))}} | {{ $item->job_shouldbe_done }} | {{ $item->amount }} | {{ $item->job_completed }} | @isset($item->getVoucher->voucher_no) {{ $item->getVoucher->voucher_no??'' }} @endisset @isset($item->getVoucher->date) {{ date('d-m-Y', strtotime($item->getVoucher->date??null)) }} @endisset |