@extends('layouts/pos_layout') @section('title', '| '.$moduleTitle) @section('content') @include('successMsg')
{{ $moduleLinkTitle }}    
{{ $moduleTitle }}
Branch Name : {{$data->branch->name}} Date : {{date('d-m-Y', strtotime($data->gift_date))}}
Total Quantity : {{$data->total_quantity}} Total Amount : {{number_format($data->total_amount, 2)}}


@php $no=0; $t_qty = $t_amount = 0; @endphp @foreach($data->product_details as $details) @php $t_qty += 1; $t_amount += $details->cost_price; @endphp @endforeach
SL No. Product Name Barcode Gift Information
Qty Unit Price Total Price PID No.
{{++$no}} {{$details->product->name}} @if(isset($details->product->barcode)) {{ $details->product->barcode }} @endif {{ $details->quantity }} {{number_format($details->cost_price, 2)}} {{number_format($details->quantity*$details->cost_price, 2)}} @if(isset($details->barcode->barcode_serial)) {{ $details->barcode->barcode_serial }} @endif
Total {{$t_qty}} Total {{number_format($t_amount, 2)}}
@endsection