@extends('layouts.app') @section('urlContent') {!! view('components.breadcrumbs', [ 'b_items' => [ 'İcra takibi' => '/accounting/execution/list', 'Ödemeler' => '/accounting/execution/detail/' . request()->segment(4), ], ]) !!} @endsection @section('content') @section('content')
    {{-- odenecekler --}}
    @foreach ($willPayAccountings as $item) @php $willPayAccountingTotal = 0; foreach ($item as $key => $data) { $willPayAccountingTotal += $data->icra_debt; } @endphp
  1. Toplam Ödenecek Tutar : {{ $willPayAccountingTotal }} ₺

    {{--

    {{ $item[0]->location }}

    {{ $item[0]->icra_debt }}

    --}}
    @csrf
  2. @endforeach
    {{-- odenmisler --}}
@include('components.pdfViewer') @if ($errors->any()) @include('components.error-modal-second') @endif @if (session('error')) @include('components.error-modal') @endif @if (session('success')) @include('components.success-modal') @endif @endsection @section('javascript') @endsection