@extends('admin.layouts.app') @section('content')
{{-- Orange Header --}}

Monthly Salary Process

@if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif
@csrf {{-- Process Type + For Month --}}

For Month

{{-- Selection By Label --}}

Selection By

{{-- 4 Selection Columns: Branch | Department | Designation | Employee --}}
{{-- === BRANCH === --}}
@forelse($branches as $branch) @empty

No branches

@endforelse
{{-- === DEPARTMENT === --}}
@forelse($departments as $dept) @empty

No departments

@endforelse
{{-- === DESIGNATION === --}}
@forelse($designations as $desig) @empty

No designations

@endforelse
{{-- === EMPLOYEE === --}}
@forelse($employees as $emp) @empty

No employees

@endforelse
{{-- Process / Cancel Buttons --}}
Cancel
@push('scripts') @endpush @endsection