@extends('layouts.pdf') @section('title') {{ $extra['module_name'] }} @endsection @section('content') @php $template_id = !empty($extra['template_id']) ? $extra['template_id'] : 1; @endphp @include('includes.unapproved_text',['voucher_type'=> 'RV' ,'reference_id'=> $items['item']->id]) @if($template_id == 1) @include('admin.schedule-manage.actual-payment.doc-charges-receipt-pdf.template_1.index') @elseif ($template_id == 2) @include('admin.schedule-manage.actual-payment.doc-charges-receipt-pdf.template_2.index') @elseif ($template_id == 3) @include('admin.schedule-manage.actual-payment.doc-charges-receipt-pdf.template_3.index') @else @include('admin.schedule-manage.actual-payment.doc-charges-receipt-pdf.template_1.index') @endif @stop