@extends('garage.layouts.app') @section('title', 'Add employee') @section('content')
New employee
Tip: Hourly/Daily employees can auto-create a billable labor item.
@if(session('error'))
{{ session('error') }}
@endif @if($errors->any())
@endif
@csrf
@forelse(($responsibilityServices ?? []) as $svc)
@empty
No active services found.
@endforelse
Select department/designation to see allowed services.
This phone number already exists for another employee.
0.00
Formula: Basic salary + active fixed allowances.
Auto-filled from Employee Fund Setup slab (editable).
Allowed: JPG, PNG, WEBP (max 5 MB).
Allowed: images, PDF, DOC/DOCX, XLS/XLSX, TXT (max 10 MB each).
Manage allowances setup
@foreach(($allowanceSeedRows ?? []) as $i => $r) @endforeach
Allowance Type Amount Month (variable) Active
{{ ucfirst($r['type'] ?? 'fixed') }}
Fixed allowances are added every month. Variable allowances are added only in selected month.
@if(old('is_active', 1)) @else @endif
@endsection