@extends(backpack_view('blank')) @section('header')

Modifier le versement à l'attention de {{ $payment->shareholder_name }} pour le film {{ $payment->film_title }}

@endsection @section('content')
@csrf @method('PUT') @php $shareholder = $payment->shareholder; @endphp

Coordonnées

@error('shareholder_name')
{{ $message }}
@enderror @error('shareholder_address')
{{ $message }}
@enderror

Ayant-droit : {{ $shareholder->title }}

@foreach ($payment->distributionSummaries as $distkey => $distribution) @endforeach @foreach ($payment->attributableCosts as $attrKey => $item) @endforeach @include('admin.crud.accounting.payment.parts.row-input', [ 'label' => 'Montant Brut', 'field_base_name' => 'montant_brut', 'value' => old('montant_brut', $payment->montant_brut), ]) @include('admin.crud.accounting.payment.parts.row-input-with-taux', [ 'label' => 'Cotisation vieillesse plafonnée', 'field_base_name' => 'cotisation_veillesse', 'value' => old('cotisation_veillesse', $payment->cotisation_veillesse), 'taux_value' => old( 'taux_cotisation_veillesse', $payment->taux_cotisation_veillesse), ]) @include('admin.crud.accounting.payment.parts.row-input-with-taux', [ 'label' => 'CSG', 'field_base_name' => 'csg_totale', 'value' => old('csg_totale', $payment->csg_totale), 'taux_value' => old('taux_csg_totale', $payment->taux_csg_totale), ]) @include('admin.crud.accounting.payment.parts.row-input-with-taux', [ 'label' => 'dont CSG imposable', 'field_base_name' => 'csg_imposable', 'value' => old('csg_imposable', $payment->csg_imposable), 'taux_value' => old('taux_csg_imposable', $payment->taux_csg_imposable), ]) @include('admin.crud.accounting.payment.parts.row-input-with-taux', [ 'label' => 'CRDS', 'field_base_name' => 'crds', 'value' => old('crds', $payment->crds), 'taux_value' => old('taux_crds', $payment->taux_crds), ]) @include('admin.crud.accounting.payment.parts.row-input-with-taux', [ 'label' => 'Cotisation formation professionelle', 'field_base_name' => 'cotisation_formation', 'value' => old('cotisation_formation', $payment->cotisation_formation), 'taux_value' => old( 'taux_cotisation_formation', $payment->taux_cotisation_formation), ]) @include('admin.crud.accounting.payment.parts.row-input', [ 'label' => 'Total cotisations', 'field_base_name' => 'total_cotisations', 'value' => old('total_cotisations', $payment->total_cotisations), ]) @include('admin.crud.accounting.payment.parts.row-input', [ 'label' => 'Montant net', 'field_base_name' => 'montant_net_a_payer', 'value' => old('montant_net_a_payer', $payment->montant_net_a_payer), ]) @include('admin.crud.accounting.payment.parts.row-input', [ 'label' => 'Montant net imposable', 'field_base_name' => 'montant_net_imposable', 'value' => old('montant_net_imposable', $payment->montant_net_imposable), ]) @include('admin.crud.accounting.payment.parts.row-input-with-taux', [ 'label' => 'Contribution diffuseur', 'field_base_name' => 'contribution_diffuseur', 'value' => old('contribution_diffuseur', $payment->contribution_diffuseur), 'taux_value' => old( 'taux_contribution_diffuseur', $payment->taux_contribution_diffuseur), ])
Intitulé Revenue Part % Total
{{ $distribution->title }}
{{ $distribution->revenue_total }} {{ $distribution->share }}
%
Cotisations
@endsection @once @endonce @push('after_scripts') @loadOnce('initRepeatableTableSectionElement') @endLoadOnce @endpush