@lang('lang_v1.location_from'):
{{ $location_details['sell']->name }}
@if (!empty($location_details['sell']->landmark))
{{ $location_details['sell']->landmark }}
@endif
@if (
!empty($location_details['sell']->city) ||
!empty($location_details['sell']->state) ||
!empty($location_details['sell']->country))
{{ implode(',', array_filter([$location_details['sell']->city, $location_details['sell']->state, $location_details['sell']->country])) }}
@endif
@if (!empty($location_details['sell']->mobile))
@lang('contact.mobile'): {{ $location_details['sell']->mobile }}
@endif
@if (!empty($location_details['sell']->email))
Email: {{ $location_details['sell']->email }}
@endif
@lang('purchase.ref_no'): #{{ $sell_transfer->ref_no }}
@lang('messages.date'): {{ @format_date($sell_transfer->transaction_date) }}
| # |
@lang('sale.product') |
@lang('sale.qty') |
@lang('unit.units') |
@lang('sale.subtotal') |
@php
$total = 0.00;
@endphp
@foreach ($sell_transfer->sell_lines as $sell_lines)
| {{ $loop->iteration }} |
{{ $sell_lines->product->name }}
@if ($sell_lines->product->type == 'variable')
- {{ $sell_lines->variations->product_variation->name }}
- {{ $sell_lines->variations->name }}
@endif
- {{ $sell_lines->variations->sub_sku }}
|
{{ @format_quantity($sell_lines->quantity) }} - {{$sell_lines->product->unit->short_name}} |
@if(!empty($sell_lines->sub_unit)) {{@format_quantity($sell_lines->quantity/$sell_lines->sub_unit->base_unit_multiplier)}} {{$sell_lines->sub_unit->short_name}} @else -- @endif |
{{ $sell_lines->unit_price_inc_tax * $sell_lines->quantity }}
@php
$total +=$sell_lines->unit_price_inc_tax * $sell_lines->quantity;
@endphp
|
@endforeach
| @lang('purchase.purchase_total'): |
|
{{ $total }} |
{{ __('lang_v1.activities') }}:
@includeIf('activity_log.activities', ['activity_type' => 'sell'])
@if (!$sell_transfer->type == 'sell')
@endif