@extends('admin.layouts.app') @section('title', get_setting('site_name').' | '.__('Branch Clearance').' (নমুনা-১৫)') @section('content') @php $b = $branch ?? []; $fmt = fn ($v) => is_numeric($v) ? number_format((float) $v, 2, '.', '') : ($v ?? ''); $ro = !empty($canEdit) ? '' : 'readonly'; @endphp
@if (session()->has('message'))
{{ session('message') }}
@endif @if (session()->has('error'))
{{ session('error') }}
@endif @if ($errors->any())
@endif

নমুনা-১৫ — ছাড়পত্র (শাখা কার্যালয়ের জন্য প্রযোজ্য)

{{ $employee['name'] ?? '—' }} · {{ $employee['sid'] ?? '' }}

@if(empty($canEdit))

{{ __('View only — Branch Manager fills this form.') }}

@endif
{{ __('Back') }} @if($clearanceForm?->hasBranchData()) {{ __('Print') }} @endif
@csrf
নমুনা-১৫ — ছাড়পত্র (শাখা কার্যালয়ের জন্য প্রযোজ্য)
পাওনা বেতনের তথ্য (যদি থাকে)
@foreach([ 'basic' => 'মূল বেতন', 'house_rent' => 'বাড়ীভাড়া', 'medical' => 'স্বাস্থ্যভাতা', 'conveyance' => 'যাতায়াত ভাতা', 'mobile' => 'মোবাইল ভাতা', 'lunch' => 'মধ্যাহ্নভোজ ভাতা', 'other' => 'অন্যান্য', 'total_payable' => 'মোট পাওনার পরিমাণ', ] as $key => $label)
@endforeach
ছুটির বিবরণ
@if($clearanceForm?->branch_filled_at) {{ __('Last saved') }}: {{ $clearanceForm->branch_filled_at->format('d M Y, h:i A') }} @if($clearanceForm->branchFilledBy) · {{ $clearanceForm->branchFilledBy->name }} @endif @endif @if(!empty($canEdit)) @endif
@endsection