@extends('layouts.app') @section('urlContent') {!! view('components.breadcrumbs', [ 'b_items' => [ 'Müşteri Puantaj' => '/accounting/customer-payroll', ], ]) !!} @endsection @section('content') {{-- @include('components.sidebar') @include('components.profile') --}}
    @foreach ($customers as $customer)
  1. {{ $customer->name }}

    {{ $customer->city }}

    {{ $customer->district }}

    {{ isset($headOfficeCosts[$customer->id]) ? sprintf('%.2f', $headOfficeCosts[$customer->id]) : '0' }} TL
  2. @endforeach @if (count($customers) <= 0) Hiç Veri Bulunamadı @endif
@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 @include('components.accounting.addInvoice') @include('components.showImage') @endsection @section('javascript') @endsection