@extends('admin.layouts.app') @section('title', get_setting('site_name').' | PF Ledger') @section('content')
{{ __('PF Ledger') }}
{{ __('Export Excel') }}
@forelse($rows as $row) @empty @endforelse
{{ __('Date') }} {{ __('Employee') }} {{ __('Type') }} {{ __('Amount') }} {{ __('Ref') }} {{ __('Notes') }}
{{ $row->entry_date?->format('Y-m-d') }}
{{ $row->account?->staff?->user?->name }}
{{ $row->account?->staff?->user?->id }}
{{ $row->type }} {{ number_format((float)$row->amount, 2) }} {{ $row->ref_type }} @if($row->ref_id) (#{{ $row->ref_id }}) @endif {{ $row->notes }}
{{ __('No records') }}
{{ $rows->links() }}
@endsection