@extends('livewire.components.table-editor')
@section('header')
@if ($is_deposit)
@else
@endif
{{-- todo クライアント設定--}}
@if ($is_supplier)
@else
@endif
@livewire($allocation_table, [
'title' => false,
'per_page' => 5,
'has_statistics' => false,
'add_btn_name' => null,
'is_selectable' => false,
'is_editable' => false,
'is_deletable' => false,
'is_exportable' => false,
'is_changeable_col' => false,
'has_drawer' => false,
'add_btn_route' => null,
'edit_btn_route' => null,
'detail_view_url' => null,
'edit_btns' => [],
'partner_id' => $partner_id,
'is_supplier' => $is_supplier,
'is_deposit' => $is_deposit,
'key' => 'partner-bill-allocation',
'parent' => get_class($this)
], key('partner-bill-allocation'))
@include('components.trade-balance-table-summary', ['total' => $total_amount])
@endsection
@section('config')
@endsection