@extends('layout.app') @section('title', __('payrolls')) @section('content')
@foreach ($payrolls as $payroll) @endforeach
{{ __('sl') }} {{ __('created_by') }} {{ __('employee') }} {{ __('account') }} {{ __('amount') }} {{ __('date') }} {{ __('note') }} {{ __('action') }}
{{ $loop->iteration }} {{ $payroll->user->name }} {{ $payroll->employee->user->name ?? 'N/A' }} {{ $payroll->account->name ?? 'N/A' }} {{ numberFormat($payroll->amount) }} {{ $payroll->date }} {{ $payroll->note ?? 'N/A' }}
@endsection