@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/' . $id . '?year=' . $year . '&month=' . $month, ], ]) !!} @endsection @section('content') {{-- @include('components.sidebar') @include('components.profile') --}}
Puantaj Detaylarını Görüntüleyin.