@extends('admin.layouts.app') @section('title', get_setting('site_name').' | GF Accounts') @section('content')
{{ __('GF Accounts') }}
{{ __('GF Settings') }}
{{ __('Clear') }}
@forelse($rows as $staff) @php $acc = $staff->gfAccount; $isEnrolled = $acc && $acc->is_enrolled && $acc->status === 'active'; @endphp @empty @endforelse
{{ __('Employee') }} {{ __('Branch') }} {{ __('Department') }} {{ __('Enrolled') }} {{ __('Monthly %') }} {{ __('Status') }} {{ __('Action') }}
{{ $staff->user?->name }}
{{ $staff->user?->id }}
{{ $staff->warehouse?->name }} {{ $staff->department?->name }} @if($isEnrolled) {{ __('Yes') }} @else {{ __('No') }} @endif {{ $acc?->monthly_accrual_percent_of_basic ?? '-' }} {{ $acc?->status ?? '-' }} {{ __('Edit') }} {{ __('Statement') }}
{{ __('No records') }}
{{ $rows->links() }}
@endsection