@extends('layouts.business.master') @section('title') {{ __('Edit Transfer') }} @endsection @section('main_content')

{{ __('Edit Transfer') }}

@usercan('transfers.read') {{ __('Transfer List') }} @endusercan
@csrf @method('PUT')
@if((moduleCheck('MultiBranchAddon') && multibranch_active()) && !auth()->user()->active_branch_id)
@endif @if(moduleCheck('MultiBranchAddon') && multibranch_active())
@endif @if(moduleCheck('warehouseAddon'))
@endif
{{ __('Search Product') }}
@if($transfer->status === 'cancelled') @else @endif
{{--Cart list --}}
@foreach($transfer->transferProducts as $tp) @endforeach
{{ __('Image') }} {{ __('Items') }} {{ __('Code') }} {{ __('Batch') }} {{ __('Qty') }} {{ __('Unit Price') }} {{ __('Tax') }} {{ __('Discount') }} {{ __('Sub Total') }} {{ __('Action') }}
{{ $tp->stock->product->productName ?? '' }} {{ $tp->stock->product->productCode ?? '' }} {{ $tp->stock->batch_no ?? '' }} {{ number_format(($tp->quantity * $tp->unit_price) + $tp->tax - $tp->discount, 2) }}

{{ __('Transfer Note') }}

{{ __('Sub Total') }}
{{ currency_format($transfer->sub_total) }}
{{ __('Discount') }}
{{ currency_format($transfer->total_discount) }}
{{ __('Tax') }}
{{ currency_format($transfer->total_tax) }}
{{ __('Shipping Charge') }}
{{ __('Total Amount') }}
{{ currency_format($transfer->grand_total) }}
@usercan('transfers.create') @endusercan
@endsection @push('js') @endpush