@usercan('transfers.delete')
|
|
@endusercan
{{ ($transfers->currentPage() - 1) * $transfers->perPage() + $loop->iteration }}
|
{{ $transfer->transfer_date }} |
{{ $transfer->invoice_no }} |
@if (moduleCheck('MultiBranchAddon') && multibranch_active())
{{ $transfer->fromBranch->name ?? '' }} |
@endif
@if (moduleCheck('WarehouseAddon'))
{{ $transfer->fromWarehouse->name ?? '' }} |
@endif
@if (moduleCheck('MultiBranchAddon') && multibranch_active())
{{ $transfer->toBranch->name ?? '' }} |
@endif
@if (moduleCheck('WarehouseAddon'))
{{ $transfer->toWarehouse->name ?? '' }} |
@endif
{{ $totalQty }} |
{{ currency_format($totalStockValue, currency: business_currency()) }}
|
@if ($transfer->status === 'pending')
{{ ucfirst($transfer->status) }}
@elseif ($transfer->status === 'completed')
{{ ucfirst($transfer->status) }}
@elseif ($transfer->status === 'cancelled')
{{ ucfirst($transfer->status) }}
@else
{{ ucfirst($transfer->status) }}
@endif
|
|
@endforeach