@extends('layouts.pdf') @section('title') {{ $extra['module_name'] }} @endsection @section('content') {{--

Printing Date & Time: {{ $extra['current_date_time'] }}

--}}

{{ config('settings.company_name')}}

{{ config('settings.address_1')}}, {{ config('settings.address_2')}}, {{ config('settings.city')}}

{{ $data['branch']['name'] }}


{{ $extra['voucher_type'] }}

@if($search_by['from'] && $search_by['to']) @php $from = explode('/', $search_by['from']); $to = explode('/', $search_by['to']); $search_by['from'] = $from[1].'/'.$from[0].'/'.$from[2]; $search_by['to'] = $to[1].'/'.$to[0].'/'.$to[2]; @endphp From: {{ date(config('settings.date_format'), strtotime($search_by['from'])) }} To: {{ date(config('settings.date_format'), strtotime($search_by['to'])) }} @elseif($search_by['upto']) {{ $search_by['upto'] }} @endif
{{--

{{empty($extra['branch_name']) ? 'All Projects' : $extra['branch_name']}}

--}}

{{ $search_by['branch_name'] }}


{{-- Calculation --}} {{-- Calculation --}}
@include('admin.partials.report_download_options')
{{-- --}} @foreach ($items as $key => $item) @endforeach
Project NameItem-id Item Name Item Unit Total Quantity Received Quantity Balance Requested Date Received Date Rate {{$transaction->systemSettingCurrency()}}
{{ $item->purchase_id }} {{ $item->name }} {{ $item->unit }} {{ $item->quantity }} {{ $item->quantity_received }} {{ max(($item->quantity_received - $item->quantity), 0) }} {{ $item->requested_date }} {{ $item->receiving_date }} {{ $transaction->convert_money_format($item->rate) }}
Total

@stop