Payment Method
Change Payemnt Method
Payment Type: {{ ucfirst($staff->payment_type ?? 'Not specified') }} @if($staff->payment_type === 'bank')
Bank Account
@elseif($staff->payment_type === 'wallet')
Wallet
@elseif($staff->payment_type === 'cash')
Cash
@endif
@if($staff->payment_type === 'bank')
{{ $staff->bank_account_name ?? 'N/A' }}
{{ $staff->bank_account_no ?? 'N/A' }}
{{ $staff->bank_name ?? 'N/A' }}
{{ $staff->bank_brach ?? 'N/A' }}
@endif @if($staff->payment_type === 'wallet')
{{ $staff->wallet_number ?? 'N/A' }}
@endif @if($staff->payment_type === 'cash')
Payments will be made in cash.
@endif
Document Information
Resume
@if(isset($staff) && $staff->resume) View Resume @else No resume uploaded @endif
Joining Letter
@if(isset($staff) && $staff->joining_letter) View Joining Letter @else No joining letter uploaded @endif
Other Documents
@if(isset($staff) && $staff->other_document) View Document @else No additional documents @endif
Social Links