@extends('layouts.app') @php // GERI DONULECEK IDYI AL $id = request()->segment(4); $year = request()->year; $month = request()->month; @endphp @section('urlContent') {!! view('components.breadcrumbs', [ 'b_items' => [ 'Müşteri Puantaj' => '/accounting/customer-payroll?year=' . $year . '&month=' . $month, 'Müşteri Detayı' => '/accounting/customer-payroll/details/' . $id . '?year=' . $year . '&month=' . $month, 'Detaylı Hakediş' => '/accounting/customer-payroll/details-accountings-department/' . $id . '?year=' . $year . '&month=' . $month, ], ]) !!} @endsection @section('content') {{-- @include('components.sidebar') @include('components.profile') --}}

Puantaj Detayları

Puantaj Detaylarını Görüntüleyin.

@foreach ($accountings as $accounting)
  • {{ $accounting[0]->department->name }}

    @php $totalCost = 0; foreach ($accounting as $item) { $totalCost += $item->totalcost_with_offer; } @endphp {{ sprintf('%.2f', $totalCost) }} TL Düzenle
  • @endforeach
    @endsection