@extends('print.template.checklist')
@section('head')
@parent
@endsection
@section('header')
@endsection
@section('stamp-header')
@if(!empty($client->setting->stamp_image_url))

@endif
@endsection
@section('table-details')
@php
$partner_bank = $partner->partner_bank;
$bank = $partner_bank?->bank_id ?
$partner_bank : $partner->client_bank ?? \App\Models\ClientBank::where('is_active','=',true)->first();
$bank_type = \App\Enums\EBankType::fromValue($bank?->type)?->name();
$auto_withdrawal_type = \App\Enums\Partners\EAutoWithdrawalType::tryFrom($bank->auto_withdrawal_type);
@endphp
@if ($is_show_bank_data)
@endif
@if($shows_invoice_table)
@yield('invoice-header')
@endif
@section('invoice-main-table')
@if(!$is_only_header)
@yield('invoice-detail-thead')
@foreach($details as $line)
@foreach($line as $column_index => $element)
商品名
@php
if($column_index == $item_column_index):
$css = 'text-left';
$element = mb_strimwidth($element, 0, 40);
else:
$css = '';
endif;
@endphp
| {{ $element }} |
@endforeach
@endforeach
@endif
@show
@endsection