From bcd593fb90a838c264440268468a4e8cc6636ae9 Mon Sep 17 00:00:00 2001 From: Flatlogic Bot Date: Sun, 22 Mar 2026 13:29:44 +0000 Subject: [PATCH] adding nursing notes --- .../20260322_add_nursing_notes_to_visits.sql | 1 + includes/actions.php | 10 +- includes/layout/footer.php | 63 +- lang.php | 1443 +++++++++-------- 4 files changed, 807 insertions(+), 710 deletions(-) create mode 100644 db/migrations/20260322_add_nursing_notes_to_visits.sql diff --git a/db/migrations/20260322_add_nursing_notes_to_visits.sql b/db/migrations/20260322_add_nursing_notes_to_visits.sql new file mode 100644 index 0000000..ecc31fd --- /dev/null +++ b/db/migrations/20260322_add_nursing_notes_to_visits.sql @@ -0,0 +1 @@ +ALTER TABLE visits ADD COLUMN IF NOT EXISTS nursing_notes TEXT AFTER temperature; diff --git a/includes/actions.php b/includes/actions.php index 68d1337..c7e4b34 100644 --- a/includes/actions.php +++ b/includes/actions.php @@ -227,6 +227,7 @@ if (isset($_SERVER['REQUEST_METHOD']) && $_SERVER['REQUEST_METHOD'] === 'POST') $symptoms = $_POST['symptoms'] ?? ''; $diagnosis = $_POST['diagnosis'] ?? ''; $treatment = $_POST['treatment_plan'] ?? ''; + $nursing_notes = $_POST['nursing_notes'] ?? ''; if ($patient_id && ($doctor_id || $nurse_id)) { $db->beginTransaction(); @@ -241,8 +242,8 @@ if (isset($_SERVER['REQUEST_METHOD']) && $_SERVER['REQUEST_METHOD'] === 'POST') $address = $apt['address'] ?? null; } - $stmt = $db->prepare("INSERT INTO visits (patient_id, doctor_id, nurse_id, visit_type, address, appointment_id, weight, blood_pressure, heart_rate, temperature, symptoms, diagnosis, treatment_plan) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)"); - $stmt->execute([$patient_id, $doctor_id, $nurse_id, $visit_type, $address, $appointment_id, $weight, $bp, $hr, $temp, $symptoms, $diagnosis, $treatment]); + $stmt = $db->prepare("INSERT INTO visits (patient_id, doctor_id, nurse_id, visit_type, address, appointment_id, weight, blood_pressure, heart_rate, temperature, symptoms, diagnosis, treatment_plan, nursing_notes) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)"); + $stmt->execute([$patient_id, $doctor_id, $nurse_id, $visit_type, $address, $appointment_id, $weight, $bp, $hr, $temp, $symptoms, $diagnosis, $treatment, $nursing_notes]); $visit_id = $db->lastInsertId(); $token_message = ''; @@ -317,6 +318,7 @@ if (isset($_SERVER['REQUEST_METHOD']) && $_SERVER['REQUEST_METHOD'] === 'POST') $symptoms = $_POST['symptoms'] ?? ''; $diagnosis = $_POST['diagnosis'] ?? ''; $treatment = $_POST['treatment_plan'] ?? ''; + $nursing_notes = $_POST['nursing_notes'] ?? ''; // Check for 24h restriction $stmtSet = $db->prepare("SELECT setting_value FROM settings WHERE setting_key = 'disable_visit_edit_24h'"); @@ -343,8 +345,8 @@ if (isset($_SERVER['REQUEST_METHOD']) && $_SERVER['REQUEST_METHOD'] === 'POST') if ($id && $doctor_id) { // Removed patient_id from UPDATE - $stmt = $db->prepare("UPDATE visits SET doctor_id = ?, weight = ?, blood_pressure = ?, heart_rate = ?, temperature = ?, symptoms = ?, diagnosis = ?, treatment_plan = ? WHERE id = ?"); - $stmt->execute([$doctor_id, $weight, $bp, $hr, $temp, $symptoms, $diagnosis, $treatment, $id]); + $stmt = $db->prepare("UPDATE visits SET doctor_id = ?, weight = ?, blood_pressure = ?, heart_rate = ?, temperature = ?, symptoms = ?, diagnosis = ?, treatment_plan = ?, nursing_notes = ? WHERE id = ?"); + $stmt->execute([$doctor_id, $weight, $bp, $hr, $temp, $symptoms, $diagnosis, $treatment, $nursing_notes, $id]); $stmt = $db->prepare("DELETE FROM visit_prescriptions WHERE visit_id = ?"); $stmt->execute([$id]); if (isset($_POST['prescriptions']) && is_array($_POST['prescriptions'])) { diff --git a/includes/layout/footer.php b/includes/layout/footer.php index 2563002..36f542c 100644 --- a/includes/layout/footer.php +++ b/includes/layout/footer.php @@ -977,7 +977,7 @@ @@ -990,6 +990,18 @@ +
+ + +
+
+ + +
+
+ + +
@@ -1018,6 +1030,10 @@
+
+ + +
@@ -1376,6 +1392,11 @@ function showRecordVisitModal(patientId = null) { document.querySelector('#prescriptionTable tbody').innerHTML = ''; addPrescriptionRow(); // Add one empty row + // Clear patient info + $('#visit_patient_gender').val(''); + $('#visit_patient_dob').val(''); + $('#visit_patient_age').val(''); + if (patientId) { $('#visit_patient_id').val(patientId).trigger('change'); } else { @@ -1435,6 +1456,23 @@ function showEditVisitModal(data) { document.getElementById('visit_blood_pressure').value = data.blood_pressure || ''; document.getElementById('visit_heart_rate').value = data.heart_rate || ''; document.getElementById('visit_temperature').value = data.temperature || ''; + document.getElementById('visit_nursing_notes').value = data.nursing_notes || ''; + + // Populate new fields + $('#visit_patient_gender').val(data.patient_gender || ''); + $('#visit_patient_dob').val(data.patient_dob || ''); + if (data.patient_dob) { + const birthDate = new Date(data.patient_dob); + const today = new Date(); + let age = today.getFullYear() - birthDate.getFullYear(); + const m = today.getMonth() - birthDate.getMonth(); + if (m < 0 || (m === 0 && today.getDate() < birthDate.getDate())) { + age--; + } + $('#visit_patient_age').val(age); + } else { + $('#visit_patient_age').val(''); + } // Populate Summernote fields $('#visit_symptoms').summernote('code', data.symptoms || ''); @@ -1815,6 +1853,29 @@ $(document).ready(function() { ] }); }); + + // Update patient details in Visit Modal + $('#visit_patient_id').on('change', function() { + const selected = $(this).find('option:selected'); + const dob = selected.data('dob'); + const gender = selected.data('gender'); + + $('#visit_patient_gender').val(gender || ''); + $('#visit_patient_dob').val(dob || ''); + + if (dob) { + const birthDate = new Date(dob); + const today = new Date(); + let age = today.getFullYear() - birthDate.getFullYear(); + const m = today.getMonth() - birthDate.getMonth(); + if (m < 0 || (m === 0 && today.getDate() < birthDate.getDate())) { + age--; + } + $('#visit_patient_age').val(age); + } else { + $('#visit_patient_age').val(''); + } + }); }); \ No newline at end of file diff --git a/lang.php b/lang.php index 60fea8d..e6fb049 100644 --- a/lang.php +++ b/lang.php @@ -1,706 +1,739 @@ [ - 'dashboard' => 'Dashboard', - 'patients' => 'Patients', - 'visits' => 'Visits', - 'appointments' => 'Appointments', - 'home_visits' => 'Home Visits', - 'queue_management' => 'Queue Management', - 'laboratory' => 'Laboratory', - 'tests' => 'Tests', - 'test_groups' => 'Test Groups', - 'inquiries' => 'Inquiries', - 'xray' => 'X-Ray', - 'groups' => 'Groups', - 'pharmacy' => 'Pharmacy', - 'inventory' => 'Inventory', - 'pos' => 'POS', - 'sales_history' => 'Sales History', - 'purchases' => 'Purchases', - 'purchase_returns' => 'Purchase Returns', - 'alerts' => 'Alerts', - 'reports' => 'Reports', - 'drugs' => 'Drugs', - 'suppliers' => 'Suppliers', - 'billing' => 'Billing', - 'insurance' => 'Insurance', - 'doctors' => 'Doctors', - 'doctor_holidays' => 'Doctor Holidays', - 'nurses' => 'Nurses', - 'admin_reports' => 'Admin Reports', - 'settings' => 'Settings', - 'company_profile' => 'Company Profile', - 'employees' => 'Employees', - 'positions' => 'Positions', - 'departments' => 'Departments', - 'services' => 'Services', - 'cities' => 'Cities', - 'queue_ads' => 'Queue Ads', - 'profile' => 'Profile', - 'logout' => 'Logout', - 'hospital_management' => 'Hospital Management', - 'login' => 'Login', - 'email' => 'Email', - 'password' => 'Password', - 'sign_in' => 'Sign In', - 'users_management' => 'Users Management', - 'roles_permissions' => 'Roles & Permissions', - 'users' => 'Users', - 'roles' => 'Roles', - 'add_user' => 'Add User', - 'edit_user' => 'Edit User', - 'delete_user' => 'Delete User', - 'role' => 'Role', - 'add_role' => 'Add Role', - 'role_name' => 'Role Name', - 'active' => 'Active', - 'inactive' => 'Inactive', - 'permissions' => 'Permissions', - 'select_all' => 'Select All', - 'save_permissions' => 'Save Permissions', - 'user_created' => 'User created successfully.', - 'user_updated' => 'User updated successfully.', - 'user_deleted' => 'User deleted successfully.', - 'permissions_updated' => 'Permissions updated successfully.', - 'confirm_delete_user' => 'Are you sure you want to delete this user?', - 'name' => 'Name', - 'actions' => 'Actions', - 'yes' => 'Yes', - 'no' => 'No', - 'search' => 'Search', - 'reset' => 'Reset', - 'cancel' => 'Cancel', - 'save' => 'Save', - 'edit' => 'Edit', - 'delete' => 'Delete', - 'status' => 'Status', - 'created_at' => 'Created At', - 'module_access' => 'Module Access', - 'permission_dashboard' => 'Dashboard', - 'permission_patients' => 'Patients', - 'permission_visits' => 'Visits', - 'permission_appointments' => 'Appointments', - 'permission_home_visits' => 'Home Visits', - 'permission_queue' => 'Queue Management', - 'permission_laboratory' => 'Laboratory', - 'permission_xray' => 'X-Ray', - 'permission_pharmacy' => 'Pharmacy', - 'permission_billing' => 'Billing', - 'permission_insurance' => 'Insurance', - 'permission_hr' => 'HR Management', - 'permission_reports' => 'Reports', - 'permission_settings' => 'Settings', - 'permission_users' => 'Users & Roles', - 'stock_management' => 'Stock Management', - 'items' => 'Items', - 'categories' => 'Categories', - 'transactions' => 'Transactions', - 'inventory_dashboard' => 'Inventory Dashboard', - 'total_items' => 'Total Items', - 'total_value' => 'Total Value', - 'low_stock_items' => 'Low Stock Items', - 'expiring_soon' => 'Expiring Soon', - 'view_details' => 'View Details', - 'recent_transactions' => 'Recent Transactions', - 'view_all_transactions' => 'View All Transactions', - 'quick_actions' => 'Quick Actions', - 'add_new_item' => 'Add New Item', - 'receive_stock' => 'Receive Stock', - 'issue_stock' => 'Issue Stock', - 'sku' => 'SKU', - 'item_name' => 'Item Name', - 'category' => 'Category', - 'unit' => 'Unit', - 'min_level' => 'Min Level', - 'reorder_level' => 'Reorder Level', - 'current_stock' => 'Current Stock', - 'out_of_stock' => 'Out of Stock', - 'item_added_successfully' => 'Item added successfully', - 'error_adding_item' => 'Error adding item', - 'item_updated_successfully' => 'Item updated successfully', - 'error_updating_item' => 'Error updating item', - 'item_deleted_successfully' => 'Item deleted successfully', - 'cannot_delete_item_with_stock' => 'Cannot delete item with existing stock', - 'fill_all_required_fields' => 'Please fill all required fields', - 'select_category' => 'Select Category', - 'description' => 'Description', - 'update' => 'Update', - 'inventory_categories' => 'Inventory Categories', - 'add_category' => 'Add Category', - 'edit_category' => 'Edit Category', - 'category_added_successfully' => 'Category added successfully', - 'category_updated_successfully' => 'Category updated successfully', - 'category_deleted_successfully' => 'Category deleted successfully', - 'cannot_delete_category_in_use' => 'Cannot delete category in use', - 'are_you_sure' => 'Are you sure?', - 'no_data_available' => 'No data available', - 'inventory_items' => 'Inventory Items', - 'add_item' => 'Add Item', - 'edit_item' => 'Edit Item', - 'inventory_transactions' => 'Inventory Transactions', - 'new_transaction' => 'New Transaction', - 'transaction_recorded_successfully' => 'Transaction recorded successfully', - 'error_recording_transaction' => 'Error recording transaction', - 'insufficient_stock_in_batch' => 'Insufficient stock in selected batch', - 'date' => 'Date', - 'type' => 'Type', - 'batch' => 'Batch', - 'quantity' => 'Quantity', - 'user' => 'User', - 'notes' => 'Notes', - 'no_transactions_found' => 'No transactions found', - 'in' => 'IN', - 'out' => 'OUT', - 'adjustment' => 'Adjustment', - 'transaction_type' => 'Transaction Type', - 'stock_in_purchase' => 'Stock IN (Purchase)', - 'stock_out_consumption' => 'Stock OUT (Consumption)', - 'select_item' => 'Select Item', - 'batch_number' => 'Batch Number', - 'expiry_date' => 'Expiry Date', - 'cost_price' => 'Cost Price', - 'supplier' => 'Supplier', - 'select_supplier' => 'Select Supplier', - 'select_batch_to_deduct_from' => 'Select Batch to deduct from', - 'select_item_first' => 'Select Item First', - 'save_transaction' => 'Save Transaction', - 'inventory_reports' => 'Inventory Reports', - 'low_stock_report' => 'Low Stock Report', - 'expiry_report' => 'Expiry Report', - 'stock_valuation_report' => 'Stock Valuation Report', - 'expiry_dates' => 'Expiry Dates', - 'valuation' => 'Valuation', - 'print_report' => 'Print Report', - 'days_remaining' => 'Days Remaining', - 'permission_inventory' => 'Stock Management', - 'name_en' => 'Name (English)', - 'name_ar' => 'Name (Arabic)', - 'no_recent_transactions' => 'No recent transactions', - 'no_items_found' => 'No items found', - 'item' => 'Item', - 'qty' => 'Qty', - 'low_stock' => 'Low Stock', - 'total_quantity' => 'Total Quantity', - 'avg_cost' => 'Average Cost', - 'department' => 'Department', - 'select_department' => 'Select Department', - 'department_consumption' => 'Department Consumption', - 'consumption_report' => 'Consumption Report', - 'total_cost' => 'Total Cost', - 'start_date' => 'Start Date', - 'end_date' => 'End Date', - 'filter' => 'Filter', - 'all_departments' => 'All Departments', - 'total' => 'Total', - 'total_patients' => 'Total Patients', - 'today_appointments' => 'Today\'s Appointments', - 'today' => 'Today', - 'revenue' => 'Revenue', - 'pending' => 'Pending', - 'add_patient' => 'Add Patient', - 'book_appointment' => 'Book Appointment', - 'add_visit' => 'Add Visit', - 'add_xray_inquiry' => 'Add X-Ray Inquiry', - 'running_visits' => 'Running Visits', - 'time' => 'Time', - 'patient' => 'Patient', - 'doctor' => 'Doctor', - 'nurse' => 'Nurse', - 'checkout_payment' => 'Checkout Payment', - 'no_running_visits' => 'No running visits', - 'no_appointments_today' => 'No appointments today', - 'phone' => 'Phone', - 'not_insured' => 'Not Insured', - 'no_patients_found' => 'No patients found', - 'reason' => 'Reason', - 'new_visit' => 'New Visit', - 'select' => 'Select', - 'select_doctor' => 'Select Doctor', - 'issue_token' => 'Issue Token', - 'select_service' => 'Select Service', - 'print_bill' => 'Print Bill', - 'close' => 'Close', - 'print' => 'Print', - 'add_bill' => 'Add Bill', - 'patient_number' => 'File No.', - 'age' => 'Age', - 'policy_number' => 'Policy No.', - 'or' => 'or', - 'showing' => 'Showing', - 'of' => 'of', - 'add_holiday' => 'Add Holiday', - 'edit_holiday' => 'Edit Holiday', - 'start_date' => 'Start Date', - 'end_date' => 'End Date', - 'note' => 'Note', - 'delete_holiday' => 'Delete Holiday', - 'are_you_sure_delete_holiday' => 'Are you sure you want to delete this holiday?', - 'holiday_added_successfully' => 'Holiday added successfully.', - 'holiday_updated_successfully' => 'Holiday updated successfully.', - 'holiday_deleted_successfully' => 'Holiday deleted successfully.', - 'no_holidays_found' => 'No holidays found', - 'add_service' => 'Add Service', - 'edit_service' => 'Edit Service', - 'delete_service' => 'Delete Service', - 'service_added_successfully' => 'Service added successfully', - 'service_updated_successfully' => 'Service updated successfully', - 'service_deleted_successfully' => 'Service deleted successfully', - 'no_services_found' => 'No services found', - 'are_you_sure_delete_service' => 'Are you sure you want to delete this service?', - 'price' => 'Price', - 'search_by_name' => 'Search by name', - 'save_changes' => 'Save Changes', - 'add_city' => 'Add City', - 'edit_city' => 'Edit City', - 'delete_city' => 'Delete City', - 'no_cities_found' => 'No cities found', - 'are_you_sure_delete' => 'Are you sure you want to delete?', - 'action_cannot_be_undone' => 'This action cannot be undone.', - 'add_ad' => 'Add Ad', - 'edit_ad' => 'Edit Ad', - 'delete_ad' => 'Delete Ad', - 'ad_text_en' => 'Ad Text (English)', - 'ad_text_ar' => 'Ad Text (Arabic)', - 'no_ads_found' => 'No ads found', - 'scheduled' => 'Scheduled', - 'completed' => 'Completed', - 'cancelled' => 'Cancelled', - 'no_address_provided' => 'No address provided', - 'provider' => 'Provider', - 'unassigned' => 'Unassigned', - 'reason_label' => 'Reason', - 'complete' => 'Complete', - 'complete_home_visit' => 'Complete Home Visit', - 'notes_treatment' => 'Notes / Treatment', - 'create_bill' => 'Create Bill', - 'save_complete' => 'Save & Complete', - 'no_appointments_found' => 'No appointments found', - 'doctor_is_on_holiday_on_this_date' => 'Selected doctor is on holiday on this date.', - 'edit_appointment' => 'Edit Appointment', - 'appointment_details' => 'Appointment Details', - 'print_daily_list' => 'Print Daily List', - 'appointments_list' => 'Appointments List', - 'back' => 'Back', - 'no_appointments' => 'No appointments found', - 'printed_on' => 'Printed on', - 'fill_all_fields' => 'Please fill in all fields', - 'invalid_credentials' => 'Invalid email or password', - 'login_to_continue' => 'Login to continue to your account', - 'forgot_password' => 'Forgot Password?', - 'user_profile' => 'User Profile', - 'profile_picture' => 'Profile Picture', - 'edit_profile' => 'Edit Profile', - 'change_avatar' => 'Change Avatar', - 'choose_file' => 'Choose file', - 'allowed_file_types' => 'Allowed file types', - 'change_password' => 'Change Password', - 'leave_blank_to_keep_current' => 'Leave blank to keep current password', - 'new_password' => 'New Password', - 'confirm_password' => 'Confirm Password', - 'name_required' => 'Name is required', - 'email_required' => 'Email is required', - 'email_already_taken' => 'Email is already taken', - 'password_min_length' => 'Password must be at least 6 characters', - 'passwords_do_not_match' => 'Passwords do not match', - 'invalid_file_type' => 'Invalid file type. Only JPG, PNG and GIF are allowed.', - 'upload_failed' => 'File upload failed', - 'profile_updated_successfully' => 'Profile updated successfully', - 'error_updating_profile' => 'Error updating profile', - 'settings_updated_successfully' => 'Settings updated successfully.', - 'company_details' => 'Company Details', - 'company_name' => 'Company Name', - 'company_email' => 'Company Email', - 'company_phone' => 'Company Phone', - 'company_address' => 'Company Address', - 'ctr_no' => 'CR No.', - 'registration_no' => 'Registration No.', - 'vat_no' => 'VAT No.', - 'timezone' => 'Timezone', - 'working_hours_start' => 'Working Hours Start', - 'working_hours_end' => 'Working Hours End', - 'currency_settings' => 'Currency Settings', - 'currency_symbol' => 'Currency Symbol', - 'decimal_digits' => 'Decimal Digits', - 'company_logo' => 'Company Logo', - 'company_favicon' => 'Company Favicon', - 'civil_id' => 'Civil ID', - 'nationality' => 'Nationality', - 'dob' => 'Date of Birth', - 'gender' => 'Gender', - 'blood_group' => 'Blood Group', - 'insurance_company' => 'Insurance Company', - 'address' => 'Address', - 'male' => 'Male', - 'female' => 'Female', - 'other' => 'Other', - 'edit_patient' => 'Edit Patient', - 'delete_patient' => 'Delete Patient', - 'confirm_delete' => 'Are you sure you want to delete', - 'add_doctor' => 'Add Doctor', - 'edit_doctor' => 'Edit Doctor', - 'specialization_en' => 'Specialization (English)', - 'specialization_ar' => 'Specialization (Arabic)', - 'hr_management' => 'HR Management', - 'attendance' => 'Attendance', - 'leave_requests' => 'Leave Requests', - 'add_employee' => 'Add Employee', - 'edit_employee' => 'Edit Employee', - 'delete_employee' => 'Delete Employee', - 'select_position' => 'Select Position', - 'no_employees_found' => 'No employees found', - 'visit_settings' => 'Visit Settings', - 'disable_visit_edit_24h' => 'Disable editing visits after 24 hours', - 'disable_visit_edit_24h_desc' => 'If enabled, visits cannot be edited 24 hours after their creation.', - ], - 'ar' => [ - 'dashboard' => 'لوحة التحكم', - 'patients' => 'المرضى', - 'visits' => 'الزيارات', - 'appointments' => 'المواعيد', - 'home_visits' => 'الزيارات المنزلية', - 'queue_management' => 'إدارة الطابور', - 'laboratory' => 'المختبر', - 'tests' => 'التحاليل', - 'test_groups' => 'مجموعات التحاليل', - 'inquiries' => 'الاستعلامات', - 'xray' => 'الأشعة', - 'groups' => 'المجموعات', - 'pharmacy' => 'الصيدلية', - 'inventory' => 'المخزون', - 'pos' => 'نقاط البيع', - 'sales_history' => 'سجل المبيعات', - 'purchases' => 'المشتريات', - 'purchase_returns' => 'مرتجعات المشتريات', - 'alerts' => 'التنبيهات', - 'reports' => 'التقارير', - 'drugs' => 'الأدوية', - 'suppliers' => 'الموردين', - 'billing' => 'الفواتير', - 'insurance' => 'التأمين', - 'doctors' => 'الأطباء', - 'doctor_holidays' => 'إجازات الأطباء', - 'nurses' => 'الممريضين', - 'admin_reports' => 'تقارير الإدارة', - 'settings' => 'الإعدادات', - 'company_profile' => 'ملف الشركة', - 'employees' => 'الموظفين', - 'positions' => 'المسميات الوظيفية', - 'departments' => 'الأقسام', - 'services' => 'الخدمات', - 'cities' => 'المدن', - 'queue_ads' => 'إعلانات الطابور', - 'profile' => 'الملف الشخصي', - 'logout' => 'تسجيل الخروج', - 'hospital_management' => 'نظام إدارة المستشفيات', - 'login' => 'تسجيل الدخول', - 'email' => 'البريد الإلكتروني', - 'password' => 'كلمة المرور', - 'sign_in' => 'دخول', - 'users_management' => 'إدارة المستخدمين', - 'roles_permissions' => 'الأدوار والصلاحيات', - 'users' => 'المستخدمين', - 'roles' => 'الأدوار', - 'add_user' => 'إضافة مستخدم', - 'edit_user' => 'تعديل مستخدم', - 'delete_user' => 'حذف مستخدم', - 'role' => 'الدور', - 'add_role' => 'إضافة دور', - 'role_name' => 'اسم الدور', - 'active' => 'نشط', - 'inactive' => 'غير نشط', - 'permissions' => 'الصلاحيات', - 'select_all' => 'تحديد الكل', - 'save_permissions' => 'حفظ الصلاحيات', - 'user_created' => 'تم إنشاء المستخدم بنجاح.', - 'user_updated' => 'تم تحديث المستخدم بنجاح.', - 'user_deleted' => 'تم حذف المستخدم بنجاح.', - 'permissions_updated' => 'تم تحديث الصلاحيات بنجاح.', - 'confirm_delete_user' => 'هل أنت متأكد من حذف هذا المستخدم؟', - 'name' => 'الاسم', - 'actions' => 'الإجراءات', - 'yes' => 'نعم', - 'no' => 'لا', - 'search' => 'بحث', - 'reset' => 'إعادة تعيين', - 'cancel' => 'إلغاء', - 'save' => 'حفظ', - 'edit' => 'تعديل', - 'delete' => 'حذف', - 'status' => 'الحالة', - 'created_at' => 'تاريخ الإنشاء', - 'module_access' => 'صلاحيات الوصول', - 'permission_dashboard' => 'لوحة التحكم', - 'permission_patients' => 'المرضى', - 'permission_visits' => 'الزيارات', - 'permission_appointments' => 'المواعيد', - 'permission_home_visits' => 'الزيارات المنزلية', - 'permission_queue' => 'إدارة الطابور', - 'permission_laboratory' => 'المختبر', - 'permission_xray' => 'الأشعة', - 'permission_pharmacy' => 'الصيدلية', - 'permission_billing' => 'الفواتير', - 'permission_insurance' => 'التأمين', - 'permission_hr' => 'إدارة الموارد البشرية', - 'permission_reports' => 'التقارير', - 'permission_settings' => 'الإعدادات', - 'permission_users' => 'المستخدمين والأدوار', - 'stock_management' => 'إدارة المخزون', - 'items' => 'الأصناف', - 'categories' => 'التصنيفات', - 'transactions' => 'المعاملات', - 'inventory_dashboard' => 'لوحة تحكم المخزون', - 'total_items' => 'إجمالي الأصناف', - 'total_value' => 'القيمة الإجمالية', - 'low_stock_items' => 'أصناف منخفضة المخزون', - 'expiring_soon' => 'تنتهي صلاحيتها قريباً', - 'view_details' => 'عرض التفاصيل', - 'recent_transactions' => 'أحدث المعاملات', - 'view_all_transactions' => 'عرض كل المعاملات', - 'quick_actions' => 'إجراءات سريعة', - 'add_new_item' => 'إضافة صنف جديد', - 'receive_stock' => 'استلام مخزون', - 'issue_stock' => 'صرف مخزون', - 'sku' => 'الرمز (SKU)', - 'item_name' => 'اسم الصنف', - 'category' => 'التصنيف', - 'unit' => 'الوحدة', - 'min_level' => 'الحد الأدنى', - 'reorder_level' => 'حد إعادة الطلب', - 'current_stock' => 'المخزون الحالي', - 'out_of_stock' => 'نفذت الكمية', - 'item_added_successfully' => 'تم إضافة الصنف بنجاح', - 'error_adding_item' => 'خطأ في إضافة الصنف', - 'item_updated_successfully' => 'تم تحديث الصنف بنجاح', - 'error_updating_item' => 'خطأ في تحديث الصنف', - 'item_deleted_successfully' => 'تم حذف الصنف بنجاح', - 'cannot_delete_item_with_stock' => 'لا يمكن حذف صنف لديه مخزون', - 'fill_all_required_fields' => 'يرجى ملء جميع الحقول المطلوبة', - 'select_category' => 'اختر التصنيف', - 'description' => 'الوصف', - 'update' => 'تحديث', - 'inventory_categories' => 'تصنيفات المخزون', - 'add_category' => 'إضافة تصنيف', - 'edit_category' => 'تعديل تصنيف', - 'category_added_successfully' => 'تم إضافة التصنيف بنجاح', - 'category_updated_successfully' => 'تم تحديث التصنيف بنجاح', - 'category_deleted_successfully' => 'تم حذف التصنيف بنجاح', - 'cannot_delete_category_in_use' => 'لا يمكن حذف تصنيف مستخدم', - 'are_you_sure' => 'هل أنت متأكد؟', - 'no_data_available' => 'لا توجد بيانات متاحة', - 'inventory_items' => 'أصناف المخزون', - 'add_item' => 'إضافة صنف', - 'edit_item' => 'تعديل صنف', - 'inventory_transactions' => 'معاملات المخزون', - 'new_transaction' => 'معاملة جديدة', - 'transaction_recorded_successfully' => 'تم تسجيل المعاملة بنجاح', - 'error_recording_transaction' => 'خطأ في تسجيل المعاملة', - 'insufficient_stock_in_batch' => 'المخزون غير كاف في الدفعة المختارة', - 'date' => 'التاريخ', - 'type' => 'النوع', - 'batch' => 'الدفعة', - 'quantity' => 'الكمية', - 'user' => 'المستخدم', - 'notes' => 'ملاحظات', - 'no_transactions_found' => 'لا توجد معاملات', - 'in' => 'وارد', - 'out' => 'صادر', - 'adjustment' => 'تسوية', - 'transaction_type' => 'نوع المعاملة', - 'stock_in_purchase' => 'وارد (شراء)', - 'stock_out_consumption' => 'صادر (استهلاك)', - 'select_item' => 'اختر الصنف', - 'batch_number' => 'رقم الدفعة', - 'expiry_date' => 'تاريخ الانتهاء', - 'cost_price' => 'سعر التكلفة', - 'supplier' => 'المورد', - 'select_supplier' => 'اختر المورد', - 'select_batch_to_deduct_from' => 'اختر الدفعة للصرف منها', - 'select_item_first' => 'اختر الصنف أولاً', - 'save_transaction' => 'حفظ المعاملة', - 'inventory_reports' => 'تقارير المخزون', - 'low_stock_report' => 'تقرير الأصناف المنخفضة', - 'expiry_report' => 'تقرير الصلاحية', - 'stock_valuation_report' => 'تقرير تقييم المخزون', - 'expiry_dates' => 'تواريخ الانتهاء', - 'valuation' => 'التقييم', - 'print_report' => 'طباعة التقرير', - 'days_remaining' => 'الأيام المتبقية', - 'permission_inventory' => 'إدارة المخزون', - 'name_en' => 'الاسم (إنجليزي)', - 'name_ar' => 'الاسم (عربي)', - 'no_recent_transactions' => 'لا توجد معاملات حديثة', - 'no_items_found' => 'لم يتم العثور على أصناف', - 'item' => 'الصنف', - 'qty' => 'الكمية', - 'low_stock' => 'مخزون منخفض', - 'total_quantity' => 'الكمية الإجمالية', - 'avg_cost' => 'متوسط التكلفة', - 'department' => 'القسم', - 'select_department' => 'اختر القسم', - 'department_consumption' => 'استهلاك الأقسام', - 'consumption_report' => 'تقرير الاستهلاك', - 'total_cost' => 'التكلفة الإجمالية', - 'start_date' => 'تاريخ البدء', - 'end_date' => 'تاريخ الانتهاء', - 'filter' => 'تصفية', - 'all_departments' => 'كل الأقسام', - 'total' => 'الإجمالي', - 'total_patients' => 'إجمالي المرضى', - 'today_appointments' => 'مواعيد اليوم', - 'today' => 'اليوم', - 'revenue' => 'الإيرادات', - 'pending' => 'معلق', - 'add_patient' => 'إضافة مريض', - 'book_appointment' => 'حجز موعد', - 'add_visit' => 'إضافة زيارة', - 'add_xray_inquiry' => 'إضافة فحص أشعة', - 'running_visits' => 'الزيارات الجارية', - 'time' => 'الوقت', - 'patient' => 'المريض', - 'doctor' => 'الطبيب', - 'nurse' => 'الممرض', - 'checkout_payment' => 'دفع الحساب', - 'no_running_visits' => 'لا توجد زيارات جارية', - 'no_appointments_today' => 'لا توجد مواعيد اليوم', - 'phone' => 'الهاتف', - 'not_insured' => 'غير مؤمن', - 'no_patients_found' => 'لم يتم العثور على مرضى', - 'reason' => 'السبب', - 'new_visit' => 'زيارة جديدة', - 'select' => 'اختر', - 'select_doctor' => 'اختر الطبيب', - 'issue_token' => 'إصدار تذكرة', - 'select_service' => 'اختر الخدمة', - 'print_bill' => 'طباعة الفاتورة', - 'close' => 'إغلاق', - 'print' => 'طباعة', - 'add_bill' => 'إضافة فاتورة', - 'patient_number' => 'رقم الملف', - 'age' => 'العمر', - 'policy_number' => 'رقم البوليصة', - 'or' => 'أو', - 'showing' => 'عرض', - 'of' => 'من', - 'add_holiday' => 'إضافة إجازة', - 'edit_holiday' => 'تعديل إجازة', - 'start_date' => 'تاريخ البدء', - 'end_date' => 'تاريخ الانتهاء', - 'note' => 'ملاحظة', - 'delete_holiday' => 'حذف إجازة', - 'are_you_sure_delete_holiday' => 'هل أنت متأكد من حذف هذه الإجازة؟', - 'holiday_added_successfully' => 'تم إضافة الإجازة بنجاح.', - 'holiday_updated_successfully' => 'تم تحديث الإجازة بنجاح.', - 'holiday_deleted_successfully' => 'تم حذف الإجازة بنجاح.', - 'no_holidays_found' => 'لم يتم العثور على إجازات', - 'add_service' => 'إضافة خدمة', - 'edit_service' => 'تعديل خدمة', - 'delete_service' => 'حذف خدمة', - 'service_added_successfully' => 'تم إضافة الخدمة بنجاح', - 'service_updated_successfully' => 'تم تحديث الخدمة بنجاح', - 'service_deleted_successfully' => 'تم حذف الخدمة بنجاح', - 'no_services_found' => 'لم يتم العثور على خدمات', - 'are_you_sure_delete_service' => 'هل أنت متأكد من حذف هذه الخدمة؟', - 'price' => 'السعر', - 'search_by_name' => 'بحث بالاسم', - 'save_changes' => 'حفظ التغييرات', - 'add_city' => 'إضافة مدينة', - 'edit_city' => 'تعديل مدينة', - 'delete_city' => 'حذف مدينة', - 'no_cities_found' => 'لم يتم العثور على مدن', - 'are_you_sure_delete' => 'هل أنت متأكد من الحذف؟', - 'action_cannot_be_undone' => 'لا يمكن التراجع عن هذا الإجراء.', - 'add_ad' => 'إضافة إعلان', - 'edit_ad' => 'تعديل إعلان', - 'delete_ad' => 'حذف إعلان', - 'ad_text_en' => 'نص الإعلان (إنجليزي)', - 'ad_text_ar' => 'نص الإعلان (عربي)', - 'no_ads_found' => 'لا توجد إعلانات', - 'scheduled' => 'مجدولة', - 'completed' => 'مكتملة', - 'cancelled' => 'ملغاة', - 'no_address_provided' => 'لم يتم تقديم عنوان', - 'provider' => 'المقدم', - 'unassigned' => 'غير معين', - 'reason_label' => 'السبب', - 'complete' => 'إكمال', - 'complete_home_visit' => 'إكمال الزيارة المنزلية', - 'notes_treatment' => 'ملاحظات / العلاج', - 'create_bill' => 'إنشاء فاتورة', - 'save_complete' => 'حفظ وإكمال', - 'no_appointments_found' => 'لا توجد مواعيد', - 'doctor_is_on_holiday_on_this_date' => 'الطبيب المحدد في إجازة في هذا التاريخ.', - 'edit_appointment' => 'تعديل موعد', - 'appointment_details' => 'تفاصيل الموعد', - 'print_daily_list' => 'طباعة القائمة اليومية', - 'appointments_list' => 'قائمة المواعيد', - 'back' => 'رجوع', - 'no_appointments' => 'لم يتم العثور على مواعيد', - 'printed_on' => 'تم الطباعة في', - 'fill_all_fields' => 'يرجى ملء جميع الحقول', - 'invalid_credentials' => 'البريد الإلكتروني أو كلمة المرور غير صحيحة', - 'login_to_continue' => 'قم بتسجيل الدخول للمتابعة', - 'forgot_password' => 'هل نسيت كلمة المرور؟', - 'user_profile' => 'الملف الشخصي', - 'profile_picture' => 'الصورة الشخصية', - 'edit_profile' => 'تعديل الملف الشخصي', - 'change_avatar' => 'تغيير الصورة', - 'choose_file' => 'اختر ملف', - 'allowed_file_types' => 'أنواع الملفات المسموحة', - 'change_password' => 'تغيير كلمة المرور', - 'leave_blank_to_keep_current' => 'اتركه فارغاً للاحتفاظ بكلمة المرور الحالية', - 'new_password' => 'كلمة المرور الجديدة', - 'confirm_password' => 'تأكيد كلمة المرور', - 'name_required' => 'الاسم مطلوب', - 'email_required' => 'البريد الإلكتروني مطلوب', - 'email_already_taken' => 'البريد الإلكتروني مسجل مسبقاً', - 'password_min_length' => 'يجب أن تتكون كلمة المرور من 6 أحرف على الأقل', - 'passwords_do_not_match' => 'كلمات المرور غير متطابقة', - 'invalid_file_type' => 'نوع الملف غير صالح. مسموح فقط بـ JPG, PNG, GIF.', - 'upload_failed' => 'فشل تحميل الملف', - 'profile_updated_successfully' => 'تم تحديث الملف الشخصي بنجاح', - 'error_updating_profile' => 'خطأ في تحديث الملف الشخصي', - 'settings_updated_successfully' => 'تم تحديث الإعدادات بنجاح.', - 'company_details' => 'تفاصيل الشركة', - 'company_name' => 'اسم الشركة', - 'company_email' => 'البريد الإلكتروني للشركة', - 'company_phone' => 'هاتف الشركة', - 'company_address' => 'عنوان الشركة', - 'ctr_no' => 'رقم السجل التجاري', - 'registration_no' => 'رقم التسجيل', - 'vat_no' => 'الرقم الضريبي', - 'timezone' => 'المنطقة الزمنية', - 'working_hours_start' => 'بداية ساعات العمل', - 'working_hours_end' => 'نهاية ساعات العمل', - 'currency_settings' => 'إعدادات العملة', - 'currency_symbol' => 'رمز العملة', - 'decimal_digits' => 'الخانات العشرية', - 'company_logo' => 'شعار الشركة', - 'company_favicon' => 'أيقونة الموقع', - 'civil_id' => 'الرقم المدني', - 'nationality' => 'الجنسية', - 'dob' => 'تاريخ الميلاد', - 'gender' => 'الجنس', - 'blood_group' => 'فصيلة الدم', - 'insurance_company' => 'شركة التأمين', - 'address' => 'العنوان', - 'male' => 'ذكر', - 'female' => 'أنثى', - 'other' => 'آخر', - 'edit_patient' => 'تعديل مريض', - 'delete_patient' => 'حذف مريض', - 'confirm_delete' => 'هل أنت متأكد من حذف', - 'add_doctor' => 'إضافة طبيب', - 'edit_doctor' => 'تعديل طبيب', - 'specialization_en' => 'التخصص (إنجليزي)', - 'specialization_ar' => 'التخصص (عربي)', - 'hr_management' => 'إدارة الموارد البشرية', - 'attendance' => 'الحضور والانصراف', - 'leave_requests' => 'طلبات الإجازة', - 'add_employee' => 'إضافة موظف', - 'edit_employee' => 'تعديل موظف', - 'delete_employee' => 'حذف موظف', - 'select_position' => 'اختر المسمى الوظيفي', - 'no_employees_found' => 'لم يتم العثور على موظفين', - ] -]; \ No newline at end of file +$translations = array ( + 'en' => + array ( + 'dashboard' => 'Dashboard', + 'patients' => 'Patients', + 'visits' => 'Visits', + 'appointments' => 'Appointments', + 'home_visits' => 'Home Visits', + 'queue_management' => 'Queue Management', + 'laboratory' => 'Laboratory', + 'tests' => 'Tests', + 'test_groups' => 'Test Groups', + 'inquiries' => 'Inquiries', + 'xray' => 'X-Ray', + 'groups' => 'Groups', + 'pharmacy' => 'Pharmacy', + 'inventory' => 'Inventory', + 'pos' => 'POS', + 'sales_history' => 'Sales History', + 'purchases' => 'Purchases', + 'purchase_returns' => 'Purchase Returns', + 'alerts' => 'Alerts', + 'reports' => 'Reports', + 'drugs' => 'Drugs', + 'suppliers' => 'Suppliers', + 'billing' => 'Billing', + 'insurance' => 'Insurance', + 'doctors' => 'Doctors', + 'doctor_holidays' => 'Doctor Holidays', + 'nurses' => 'Nurses', + 'admin_reports' => 'Admin Reports', + 'settings' => 'Settings', + 'company_profile' => 'Company Profile', + 'employees' => 'Employees', + 'positions' => 'Positions', + 'departments' => 'Departments', + 'services' => 'Services', + 'cities' => 'Cities', + 'queue_ads' => 'Queue Ads', + 'profile' => 'Profile', + 'logout' => 'Logout', + 'hospital_management' => 'Hospital Management', + 'login' => 'Login', + 'email' => 'Email', + 'password' => 'Password', + 'sign_in' => 'Sign In', + 'users_management' => 'Users Management', + 'roles_permissions' => 'Roles & Permissions', + 'users' => 'Users', + 'roles' => 'Roles', + 'add_user' => 'Add User', + 'edit_user' => 'Edit User', + 'delete_user' => 'Delete User', + 'role' => 'Role', + 'add_role' => 'Add Role', + 'role_name' => 'Role Name', + 'active' => 'Active', + 'inactive' => 'Inactive', + 'permissions' => 'Permissions', + 'select_all' => 'Select All', + 'save_permissions' => 'Save Permissions', + 'user_created' => 'User created successfully.', + 'user_updated' => 'User updated successfully.', + 'user_deleted' => 'User deleted successfully.', + 'permissions_updated' => 'Permissions updated successfully.', + 'confirm_delete_user' => 'Are you sure you want to delete this user?', + 'name' => 'Name', + 'actions' => 'Actions', + 'yes' => 'Yes', + 'no' => 'No', + 'search' => 'Search', + 'reset' => 'Reset', + 'cancel' => 'Cancel', + 'save' => 'Save', + 'edit' => 'Edit', + 'delete' => 'Delete', + 'status' => 'Status', + 'created_at' => 'Created At', + 'module_access' => 'Module Access', + 'permission_dashboard' => 'Dashboard', + 'permission_patients' => 'Patients', + 'permission_visits' => 'Visits', + 'permission_appointments' => 'Appointments', + 'permission_home_visits' => 'Home Visits', + 'permission_queue' => 'Queue Management', + 'permission_laboratory' => 'Laboratory', + 'permission_xray' => 'X-Ray', + 'permission_pharmacy' => 'Pharmacy', + 'permission_billing' => 'Billing', + 'permission_insurance' => 'Insurance', + 'permission_hr' => 'HR Management', + 'permission_reports' => 'Reports', + 'permission_settings' => 'Settings', + 'permission_users' => 'Users & Roles', + 'stock_management' => 'Stock Management', + 'items' => 'Items', + 'categories' => 'Categories', + 'transactions' => 'Transactions', + 'inventory_dashboard' => 'Inventory Dashboard', + 'total_items' => 'Total Items', + 'total_value' => 'Total Value', + 'low_stock_items' => 'Low Stock Items', + 'expiring_soon' => 'Expiring Soon', + 'view_details' => 'View Details', + 'recent_transactions' => 'Recent Transactions', + 'view_all_transactions' => 'View All Transactions', + 'quick_actions' => 'Quick Actions', + 'add_new_item' => 'Add New Item', + 'receive_stock' => 'Receive Stock', + 'issue_stock' => 'Issue Stock', + 'sku' => 'SKU', + 'item_name' => 'Item Name', + 'category' => 'Category', + 'unit' => 'Unit', + 'min_level' => 'Min Level', + 'reorder_level' => 'Reorder Level', + 'current_stock' => 'Current Stock', + 'out_of_stock' => 'Out of Stock', + 'item_added_successfully' => 'Item added successfully', + 'error_adding_item' => 'Error adding item', + 'item_updated_successfully' => 'Item updated successfully', + 'error_updating_item' => 'Error updating item', + 'item_deleted_successfully' => 'Item deleted successfully', + 'cannot_delete_item_with_stock' => 'Cannot delete item with existing stock', + 'fill_all_required_fields' => 'Please fill all required fields', + 'select_category' => 'Select Category', + 'description' => 'Description', + 'update' => 'Update', + 'inventory_categories' => 'Inventory Categories', + 'add_category' => 'Add Category', + 'edit_category' => 'Edit Category', + 'category_added_successfully' => 'Category added successfully', + 'category_updated_successfully' => 'Category updated successfully', + 'category_deleted_successfully' => 'Category deleted successfully', + 'cannot_delete_category_in_use' => 'Cannot delete category in use', + 'are_you_sure' => 'Are you sure?', + 'no_data_available' => 'No data available', + 'inventory_items' => 'Inventory Items', + 'add_item' => 'Add Item', + 'edit_item' => 'Edit Item', + 'inventory_transactions' => 'Inventory Transactions', + 'new_transaction' => 'New Transaction', + 'transaction_recorded_successfully' => 'Transaction recorded successfully', + 'error_recording_transaction' => 'Error recording transaction', + 'insufficient_stock_in_batch' => 'Insufficient stock in selected batch', + 'date' => 'Date', + 'type' => 'Type', + 'batch' => 'Batch', + 'quantity' => 'Quantity', + 'user' => 'User', + 'notes' => 'Notes', + 'no_transactions_found' => 'No transactions found', + 'in' => 'IN', + 'out' => 'OUT', + 'adjustment' => 'Adjustment', + 'transaction_type' => 'Transaction Type', + 'stock_in_purchase' => 'Stock IN (Purchase)', + 'stock_out_consumption' => 'Stock OUT (Consumption)', + 'select_item' => 'Select Item', + 'batch_number' => 'Batch Number', + 'expiry_date' => 'Expiry Date', + 'cost_price' => 'Cost Price', + 'supplier' => 'Supplier', + 'select_supplier' => 'Select Supplier', + 'select_batch_to_deduct_from' => 'Select Batch to deduct from', + 'select_item_first' => 'Select Item First', + 'save_transaction' => 'Save Transaction', + 'inventory_reports' => 'Inventory Reports', + 'low_stock_report' => 'Low Stock Report', + 'expiry_report' => 'Expiry Report', + 'stock_valuation_report' => 'Stock Valuation Report', + 'expiry_dates' => 'Expiry Dates', + 'valuation' => 'Valuation', + 'print_report' => 'Print Report', + 'days_remaining' => 'Days Remaining', + 'permission_inventory' => 'Stock Management', + 'name_en' => 'Name (English)', + 'name_ar' => 'Name (Arabic)', + 'no_recent_transactions' => 'No recent transactions', + 'no_items_found' => 'No items found', + 'item' => 'Item', + 'qty' => 'Qty', + 'low_stock' => 'Low Stock', + 'total_quantity' => 'Total Quantity', + 'avg_cost' => 'Average Cost', + 'department' => 'Department', + 'select_department' => 'Select Department', + 'department_consumption' => 'Department Consumption', + 'consumption_report' => 'Consumption Report', + 'total_cost' => 'Total Cost', + 'start_date' => 'Start Date', + 'end_date' => 'End Date', + 'filter' => 'Filter', + 'all_departments' => 'All Departments', + 'total' => 'Total', + 'total_patients' => 'Total Patients', + 'today_appointments' => 'Today\'s Appointments', + 'today' => 'Today', + 'revenue' => 'Revenue', + 'pending' => 'Pending', + 'add_patient' => 'Add Patient', + 'book_appointment' => 'Book Appointment', + 'add_visit' => 'Add Visit', + 'edit_visit' => 'Edit Visit', + 'add_xray_inquiry' => 'Add X-Ray Inquiry', + 'running_visits' => 'Running Visits', + 'time' => 'Time', + 'patient' => 'Patient', + 'doctor' => 'Doctor', + 'nurse' => 'Nurse', + 'checkout_payment' => 'Checkout Payment', + 'no_running_visits' => 'No running visits', + 'no_appointments_today' => 'No appointments today', + 'phone' => 'Phone', + 'not_insured' => 'Not Insured', + 'no_patients_found' => 'No patients found', + 'reason' => 'Reason', + 'new_visit' => 'New Visit', + 'select' => 'Select', + 'select_doctor' => 'Select Doctor', + 'issue_token' => 'Issue Token', + 'select_service' => 'Select Service', + 'print_bill' => 'Print Bill', + 'close' => 'Close', + 'print' => 'Print', + 'add_bill' => 'Add Bill', + 'patient_number' => 'File No.', + 'age' => 'Age', + 'policy_number' => 'Policy No.', + 'or' => 'or', + 'showing' => 'Showing', + 'of' => 'of', + 'add_holiday' => 'Add Holiday', + 'edit_holiday' => 'Edit Holiday', + 'note' => 'Note', + 'delete_holiday' => 'Delete Holiday', + 'are_you_sure_delete_holiday' => 'Are you sure you want to delete this holiday?', + 'holiday_added_successfully' => 'Holiday added successfully.', + 'holiday_updated_successfully' => 'Holiday updated successfully.', + 'holiday_deleted_successfully' => 'Holiday deleted successfully.', + 'no_holidays_found' => 'No holidays found', + 'add_service' => 'Add Service', + 'edit_service' => 'Edit Service', + 'delete_service' => 'Delete Service', + 'service_added_successfully' => 'Service added successfully', + 'service_updated_successfully' => 'Service updated successfully', + 'service_deleted_successfully' => 'Service deleted successfully', + 'no_services_found' => 'No services found', + 'are_you_sure_delete_service' => 'Are you sure you want to delete this service?', + 'price' => 'Price', + 'search_by_name' => 'Search by name', + 'save_changes' => 'Save Changes', + 'add_city' => 'Add City', + 'edit_city' => 'Edit City', + 'delete_city' => 'Delete City', + 'no_cities_found' => 'No cities found', + 'are_you_sure_delete' => 'Are you sure you want to delete?', + 'action_cannot_be_undone' => 'This action cannot be undone.', + 'add_ad' => 'Add Ad', + 'edit_ad' => 'Edit Ad', + 'delete_ad' => 'Delete Ad', + 'ad_text_en' => 'Ad Text (English)', + 'ad_text_ar' => 'Ad Text (Arabic)', + 'no_ads_found' => 'No ads found', + 'scheduled' => 'Scheduled', + 'completed' => 'Completed', + 'cancelled' => 'Cancelled', + 'no_address_provided' => 'No address provided', + 'provider' => 'Provider', + 'unassigned' => 'Unassigned', + 'reason_label' => 'Reason', + 'complete' => 'Complete', + 'complete_home_visit' => 'Complete Home Visit', + 'notes_treatment' => 'Notes / Treatment', + 'create_bill' => 'Create Bill', + 'save_complete' => 'Save & Complete', + 'no_appointments_found' => 'No appointments found', + 'doctor_is_on_holiday_on_this_date' => 'Selected doctor is on holiday on this date.', + 'edit_appointment' => 'Edit Appointment', + 'appointment_details' => 'Appointment Details', + 'print_daily_list' => 'Print Daily List', + 'appointments_list' => 'Appointments List', + 'back' => 'Back', + 'no_appointments' => 'No appointments found', + 'printed_on' => 'Printed on', + 'fill_all_fields' => 'Please fill in all fields', + 'invalid_credentials' => 'Invalid email or password', + 'login_to_continue' => 'Login to continue to your account', + 'forgot_password' => 'Forgot Password?', + 'user_profile' => 'User Profile', + 'profile_picture' => 'Profile Picture', + 'edit_profile' => 'Edit Profile', + 'change_avatar' => 'Change Avatar', + 'choose_file' => 'Choose file', + 'allowed_file_types' => 'Allowed file types', + 'change_password' => 'Change Password', + 'leave_blank_to_keep_current' => 'Leave blank to keep current password', + 'new_password' => 'New Password', + 'confirm_password' => 'Confirm Password', + 'name_required' => 'Name is required', + 'email_required' => 'Email is required', + 'email_already_taken' => 'Email is already taken', + 'password_min_length' => 'Password must be at least 6 characters', + 'passwords_do_not_match' => 'Passwords do not match', + 'invalid_file_type' => 'Invalid file type. Only JPG, PNG and GIF are allowed.', + 'upload_failed' => 'File upload failed', + 'profile_updated_successfully' => 'Profile updated successfully', + 'error_updating_profile' => 'Error updating profile', + 'settings_updated_successfully' => 'Settings updated successfully.', + 'company_details' => 'Company Details', + 'company_name' => 'Company Name', + 'company_email' => 'Company Email', + 'company_phone' => 'Company Phone', + 'company_address' => 'Company Address', + 'ctr_no' => 'CR No.', + 'registration_no' => 'Registration No.', + 'vat_no' => 'VAT No.', + 'timezone' => 'Timezone', + 'working_hours_start' => 'Working Hours Start', + 'working_hours_end' => 'Working Hours End', + 'currency_settings' => 'Currency Settings', + 'currency_symbol' => 'Currency Symbol', + 'decimal_digits' => 'Decimal Digits', + 'company_logo' => 'Company Logo', + 'company_favicon' => 'Company Favicon', + 'civil_id' => 'Civil ID', + 'nationality' => 'Nationality', + 'dob' => 'Date of Birth', + 'gender' => 'Gender', + 'blood_group' => 'Blood Group', + 'insurance_company' => 'Insurance Company', + 'address' => 'Address', + 'male' => 'Male', + 'female' => 'Female', + 'other' => 'Other', + 'edit_patient' => 'Edit Patient', + 'delete_patient' => 'Delete Patient', + 'confirm_delete' => 'Are you sure you want to delete', + 'add_doctor' => 'Add Doctor', + 'edit_doctor' => 'Edit Doctor', + 'specialization_en' => 'Specialization (English)', + 'specialization_ar' => 'Specialization (Arabic)', + 'hr_management' => 'HR Management', + 'attendance' => 'Attendance', + 'leave_requests' => 'Leave Requests', + 'add_employee' => 'Add Employee', + 'edit_employee' => 'Edit Employee', + 'delete_employee' => 'Delete Employee', + 'select_position' => 'Select Position', + 'no_employees_found' => 'No employees found', + 'visit_settings' => 'Visit Settings', + 'disable_visit_edit_24h' => 'Disable editing visits after 24 hours', + 'disable_visit_edit_24h_desc' => 'If enabled, visits cannot be edited 24 hours after their creation.', + 'details' => 'Details', + 'vitals' => 'Vitals', + 'symptoms_diagnosis' => 'Symptoms & Diagnosis', + 'treatment_plan' => 'Treatment Plan', + 'prescriptions' => 'Prescriptions', + 'weight' => 'Weight', + 'blood_pressure' => 'Blood Pressure', + 'heart_rate' => 'Heart Rate', + 'temperature' => 'Temperature', + 'symptoms' => 'Symptoms', + 'diagnosis' => 'Diagnosis', + 'drug_name' => 'Drug Name', + 'dosage' => 'Dosage', + 'instructions' => 'Instructions', + 'add_drug' => 'Add Drug', + ), + 'ar' => + array ( + 'dashboard' => 'لوحة التحكم', + 'patients' => 'المرضى', + 'visits' => 'الزيارات', + 'appointments' => 'المواعيد', + 'home_visits' => 'الزيارات المنزلية', + 'queue_management' => 'إدارة الطابور', + 'laboratory' => 'المختبر', + 'tests' => 'التحاليل', + 'test_groups' => 'مجموعات التحاليل', + 'inquiries' => 'الاستعلامات', + 'xray' => 'الأشعة', + 'groups' => 'المجموعات', + 'pharmacy' => 'الصيدلية', + 'inventory' => 'المخزون', + 'pos' => 'نقاط البيع', + 'sales_history' => 'سجل المبيعات', + 'purchases' => 'المشتريات', + 'purchase_returns' => 'مرتجعات المشتريات', + 'alerts' => 'التنبيهات', + 'reports' => 'التقارير', + 'drugs' => 'الأدوية', + 'suppliers' => 'الموردين', + 'billing' => 'الفواتير', + 'insurance' => 'التأمين', + 'doctors' => 'الأطباء', + 'doctor_holidays' => 'إجازات الأطباء', + 'nurses' => 'الممريضين', + 'admin_reports' => 'تقارير الإدارة', + 'settings' => 'الإعدادات', + 'company_profile' => 'ملف الشركة', + 'employees' => 'الموظفين', + 'positions' => 'المسميات الوظيفية', + 'departments' => 'الأقسام', + 'services' => 'الخدمات', + 'cities' => 'المدن', + 'queue_ads' => 'إعلانات الطابور', + 'profile' => 'الملف الشخصي', + 'logout' => 'تسجيل الخروج', + 'hospital_management' => 'نظام إدارة المستشفيات', + 'login' => 'تسجيل الدخول', + 'email' => 'البريد الإلكتروني', + 'password' => 'كلمة المرور', + 'sign_in' => 'دخول', + 'users_management' => 'إدارة المستخدمين', + 'roles_permissions' => 'الأدوار والصلاحيات', + 'users' => 'المستخدمين', + 'roles' => 'الأدوار', + 'add_user' => 'إضافة مستخدم', + 'edit_user' => 'تعديل مستخدم', + 'delete_user' => 'حذف مستخدم', + 'role' => 'الدور', + 'add_role' => 'إضافة دور', + 'role_name' => 'اسم الدور', + 'active' => 'نشط', + 'inactive' => 'غير نشط', + 'permissions' => 'الصلاحيات', + 'select_all' => 'تحديد الكل', + 'save_permissions' => 'حفظ الصلاحيات', + 'user_created' => 'تم إنشاء المستخدم بنجاح.', + 'user_updated' => 'تم تحديث المستخدم بنجاح.', + 'user_deleted' => 'تم حذف المستخدم بنجاح.', + 'permissions_updated' => 'تم تحديث الصلاحيات بنجاح.', + 'confirm_delete_user' => 'هل أنت متأكد من حذف هذا المستخدم؟', + 'name' => 'الاسم', + 'actions' => 'الإجراءات', + 'yes' => 'نعم', + 'no' => 'لا', + 'search' => 'بحث', + 'reset' => 'إعادة تعيين', + 'cancel' => 'إلغاء', + 'save' => 'حفظ', + 'edit' => 'تعديل', + 'delete' => 'حذف', + 'status' => 'الحالة', + 'created_at' => 'تاريخ الإنشاء', + 'module_access' => 'صلاحيات الوصول', + 'permission_dashboard' => 'لوحة التحكم', + 'permission_patients' => 'المرضى', + 'permission_visits' => 'الزيارات', + 'permission_appointments' => 'المواعيد', + 'permission_home_visits' => 'الزيارات المنزلية', + 'permission_queue' => 'إدارة الطابور', + 'permission_laboratory' => 'المختبر', + 'permission_xray' => 'الأشعة', + 'permission_pharmacy' => 'الصيدلية', + 'permission_billing' => 'الفواتير', + 'permission_insurance' => 'التأمين', + 'permission_hr' => 'إدارة الموارد البشرية', + 'permission_reports' => 'التقارير', + 'permission_settings' => 'الإعدادات', + 'permission_users' => 'المستخدمين والأدوار', + 'stock_management' => 'إدارة المخزون', + 'items' => 'الأصناف', + 'categories' => 'التصنيفات', + 'transactions' => 'المعاملات', + 'inventory_dashboard' => 'لوحة تحكم المخزون', + 'total_items' => 'إجمالي الأصناف', + 'total_value' => 'القيمة الإجمالية', + 'low_stock_items' => 'أصناف منخفضة المخزون', + 'expiring_soon' => 'تنتهي صلاحيتها قريباً', + 'view_details' => 'عرض التفاصيل', + 'recent_transactions' => 'أحدث المعاملات', + 'view_all_transactions' => 'عرض كل المعاملات', + 'quick_actions' => 'إجراءات سريعة', + 'add_new_item' => 'إضافة صنف جديد', + 'receive_stock' => 'استلام مخزون', + 'issue_stock' => 'صرف مخزون', + 'sku' => 'الرمز (SKU)', + 'item_name' => 'اسم الصنف', + 'category' => 'التصنيف', + 'unit' => 'الوحدة', + 'min_level' => 'الحد الأدنى', + 'reorder_level' => 'حد إعادة الطلب', + 'current_stock' => 'المخزون الحالي', + 'out_of_stock' => 'نفذت الكمية', + 'item_added_successfully' => 'تم إضافة الصنف بنجاح', + 'error_adding_item' => 'خطأ في إضافة الصنف', + 'item_updated_successfully' => 'تم تحديث الصنف بنجاح', + 'error_updating_item' => 'خطأ في تحديث الصنف', + 'item_deleted_successfully' => 'تم حذف الصنف بنجاح', + 'cannot_delete_item_with_stock' => 'لا يمكن حذف صنف لديه مخزون', + 'fill_all_required_fields' => 'يرجى ملء جميع الحقول المطلوبة', + 'select_category' => 'اختر التصنيف', + 'description' => 'الوصف', + 'update' => 'تحديث', + 'inventory_categories' => 'تصنيفات المخزون', + 'add_category' => 'إضافة تصنيف', + 'edit_category' => 'تعديل تصنيف', + 'category_added_successfully' => 'تم إضافة التصنيف بنجاح', + 'category_updated_successfully' => 'تم تحديث التصنيف بنجاح', + 'category_deleted_successfully' => 'تم حذف التصنيف بنجاح', + 'cannot_delete_category_in_use' => 'لا يمكن حذف تصنيف مستخدم', + 'are_you_sure' => 'هل أنت متأكد؟', + 'no_data_available' => 'لا توجد بيانات متاحة', + 'inventory_items' => 'أصناف المخزون', + 'add_item' => 'إضافة صنف', + 'edit_item' => 'تعديل صنف', + 'inventory_transactions' => 'معاملات المخزون', + 'new_transaction' => 'معاملة جديدة', + 'transaction_recorded_successfully' => 'تم تسجيل المعاملة بنجاح', + 'error_recording_transaction' => 'خطأ في تسجيل المعاملة', + 'insufficient_stock_in_batch' => 'المخزون غير كاف في الدفعة المختارة', + 'date' => 'التاريخ', + 'type' => 'النوع', + 'batch' => 'الدفعة', + 'quantity' => 'الكمية', + 'user' => 'المستخدم', + 'notes' => 'ملاحظات', + 'no_transactions_found' => 'لا توجد معاملات', + 'in' => 'وارد', + 'out' => 'صادر', + 'adjustment' => 'تسوية', + 'transaction_type' => 'نوع المعاملة', + 'stock_in_purchase' => 'وارد (شراء)', + 'stock_out_consumption' => 'صادر (استهلاك)', + 'select_item' => 'اختر الصنف', + 'batch_number' => 'رقم الدفعة', + 'expiry_date' => 'تاريخ الانتهاء', + 'cost_price' => 'سعر التكلفة', + 'supplier' => 'المورد', + 'select_supplier' => 'اختر المورد', + 'select_batch_to_deduct_from' => 'اختر الدفعة للصرف منها', + 'select_item_first' => 'اختر الصنف أولاً', + 'save_transaction' => 'حفظ المعاملة', + 'inventory_reports' => 'تقارير المخزون', + 'low_stock_report' => 'تقرير الأصناف المنخفضة', + 'expiry_report' => 'تقرير الصلاحية', + 'stock_valuation_report' => 'تقرير تقييم المخزون', + 'expiry_dates' => 'تواريخ الانتهاء', + 'valuation' => 'التقييم', + 'print_report' => 'طباعة التقرير', + 'days_remaining' => 'الأيام المتبقية', + 'permission_inventory' => 'إدارة المخزون', + 'name_en' => 'الاسم (إنجليزي)', + 'name_ar' => 'الاسم (عربي)', + 'no_recent_transactions' => 'لا توجد معاملات حديثة', + 'no_items_found' => 'لم يتم العثور على أصناف', + 'item' => 'الصنف', + 'qty' => 'الكمية', + 'low_stock' => 'مخزون منخفض', + 'total_quantity' => 'الكمية الإجمالية', + 'avg_cost' => 'متوسط التكلفة', + 'department' => 'القسم', + 'select_department' => 'اختر القسم', + 'department_consumption' => 'استهلاك الأقسام', + 'consumption_report' => 'تقرير الاستهلاك', + 'total_cost' => 'التكلفة الإجمالية', + 'start_date' => 'تاريخ البدء', + 'end_date' => 'تاريخ الانتهاء', + 'filter' => 'تصفية', + 'all_departments' => 'كل الأقسام', + 'total' => 'الإجمالي', + 'total_patients' => 'إجمالي المرضى', + 'today_appointments' => 'مواعيد اليوم', + 'today' => 'اليوم', + 'revenue' => 'الإيرادات', + 'pending' => 'معلق', + 'add_patient' => 'إضافة مريض', + 'book_appointment' => 'حجز موعد', + 'add_visit' => 'إضافة زيارة', + 'edit_visit' => 'تعديل زيارة', + 'add_xray_inquiry' => 'إضافة فحص أشعة', + 'running_visits' => 'الزيارات الجارية', + 'time' => 'الوقت', + 'patient' => 'المريض', + 'doctor' => 'الطبيب', + 'nurse' => 'الممرض', + 'checkout_payment' => 'دفع الحساب', + 'no_running_visits' => 'لا توجد زيارات جارية', + 'no_appointments_today' => 'لا توجد مواعيد اليوم', + 'phone' => 'الهاتف', + 'not_insured' => 'غير مؤمن', + 'no_patients_found' => 'لم يتم العثور على مرضى', + 'reason' => 'السبب', + 'new_visit' => 'زيارة جديدة', + 'select' => 'اختر', + 'select_doctor' => 'اختر الطبيب', + 'issue_token' => 'إصدار تذكرة', + 'select_service' => 'اختر الخدمة', + 'print_bill' => 'طباعة الفاتورة', + 'close' => 'إغلاق', + 'print' => 'طباعة', + 'add_bill' => 'إضافة فاتورة', + 'patient_number' => 'رقم الملف', + 'age' => 'العمر', + 'policy_number' => 'رقم البوليصة', + 'or' => 'أو', + 'showing' => 'عرض', + 'of' => 'من', + 'add_holiday' => 'إضافة إجازة', + 'edit_holiday' => 'تعديل إجازة', + 'note' => 'ملاحظة', + 'delete_holiday' => 'حذف إجازة', + 'are_you_sure_delete_holiday' => 'هل أنت متأكد من حذف هذه الإجازة؟', + 'holiday_added_successfully' => 'تم إضافة الإجازة بنجاح.', + 'holiday_updated_successfully' => 'تم تحديث الإجازة بنجاح.', + 'holiday_deleted_successfully' => 'تم حذف الإجازة بنجاح.', + 'no_holidays_found' => 'لم يتم العثور على إجازات', + 'add_service' => 'إضافة خدمة', + 'edit_service' => 'تعديل خدمة', + 'delete_service' => 'حذف خدمة', + 'service_added_successfully' => 'تم إضافة الخدمة بنجاح', + 'service_updated_successfully' => 'تم تحديث الخدمة بنجاح', + 'service_deleted_successfully' => 'تم حذف الخدمة بنجاح', + 'no_services_found' => 'لم يتم العثور على خدمات', + 'are_you_sure_delete_service' => 'هل أنت متأكد من حذف هذه الخدمة؟', + 'price' => 'السعر', + 'search_by_name' => 'بحث بالاسم', + 'save_changes' => 'حفظ التغييرات', + 'add_city' => 'إضافة مدينة', + 'edit_city' => 'تعديل مدينة', + 'delete_city' => 'حذف مدينة', + 'no_cities_found' => 'لم يتم العثور على مدن', + 'are_you_sure_delete' => 'هل أنت متأكد من الحذف؟', + 'action_cannot_be_undone' => 'لا يمكن التراجع عن هذا الإجراء.', + 'add_ad' => 'إضافة إعلان', + 'edit_ad' => 'تعديل إعلان', + 'delete_ad' => 'حذف إعلان', + 'ad_text_en' => 'نص الإعلان (إنجليزي)', + 'ad_text_ar' => 'نص الإعلان (عربي)', + 'no_ads_found' => 'لا توجد إعلانات', + 'scheduled' => 'مجدولة', + 'completed' => 'مكتملة', + 'cancelled' => 'ملغاة', + 'no_address_provided' => 'لم يتم تقديم عنوان', + 'provider' => 'المقدم', + 'unassigned' => 'غير معين', + 'reason_label' => 'السبب', + 'complete' => 'إكمال', + 'complete_home_visit' => 'إكمال الزيارة المنزلية', + 'notes_treatment' => 'ملاحظات / العلاج', + 'create_bill' => 'إنشاء فاتورة', + 'save_complete' => 'حفظ وإكمال', + 'no_appointments_found' => 'لا توجد مواعيد', + 'doctor_is_on_holiday_on_this_date' => 'الطبيب المحدد في إجازة في هذا التاريخ.', + 'edit_appointment' => 'تعديل موعد', + 'appointment_details' => 'تفاصيل الموعد', + 'print_daily_list' => 'طباعة القائمة اليومية', + 'appointments_list' => 'قائمة المواعيد', + 'back' => 'رجوع', + 'no_appointments' => 'لم يتم العثور على مواعيد', + 'printed_on' => 'تم الطباعة في', + 'fill_all_fields' => 'يرجى ملء جميع الحقول', + 'invalid_credentials' => 'البريد الإلكتروني أو كلمة المرور غير صحيحة', + 'login_to_continue' => 'قم بتسجيل الدخول للمتابعة', + 'forgot_password' => 'هل نسيت كلمة المرور؟', + 'user_profile' => 'الملف الشخصي', + 'profile_picture' => 'الصورة الشخصية', + 'edit_profile' => 'تعديل الملف الشخصي', + 'change_avatar' => 'تغيير الصورة', + 'choose_file' => 'اختر ملف', + 'allowed_file_types' => 'أنواع الملفات المسموحة', + 'change_password' => 'تغيير كلمة المرور', + 'leave_blank_to_keep_current' => 'اتركه فارغاً للاحتفاظ بكلمة المرور الحالية', + 'new_password' => 'كلمة المرور الجديدة', + 'confirm_password' => 'تأكيد كلمة المرور', + 'name_required' => 'الاسم مطلوب', + 'email_required' => 'البريد الإلكتروني مطلوب', + 'email_already_taken' => 'البريد الإلكتروني مسجل مسبقاً', + 'password_min_length' => 'يجب أن تتكون كلمة المرور من 6 أحرف على الأقل', + 'passwords_do_not_match' => 'كلمات المرور غير متطابقة', + 'invalid_file_type' => 'نوع الملف غير صالح. مسموح فقط بـ JPG, PNG, GIF.', + 'upload_failed' => 'فشل تحميل الملف', + 'profile_updated_successfully' => 'تم تحديث الملف الشخصي بنجاح', + 'error_updating_profile' => 'خطأ في تحديث الملف الشخصي', + 'settings_updated_successfully' => 'تم تحديث الإعدادات بنجاح.', + 'company_details' => 'تفاصيل الشركة', + 'company_name' => 'اسم الشركة', + 'company_email' => 'البريد الإلكتروني للشركة', + 'company_phone' => 'هاتف الشركة', + 'company_address' => 'عنوان الشركة', + 'ctr_no' => 'رقم السجل التجاري', + 'registration_no' => 'رقم التسجيل', + 'vat_no' => 'الرقم الضريبي', + 'timezone' => 'المنطقة الزمنية', + 'working_hours_start' => 'بداية ساعات العمل', + 'working_hours_end' => 'نهاية ساعات العمل', + 'currency_settings' => 'إعدادات العملة', + 'currency_symbol' => 'رمز العملة', + 'decimal_digits' => 'الخانات العشرية', + 'company_logo' => 'شعار الشركة', + 'company_favicon' => 'أيقونة الموقع', + 'civil_id' => 'الرقم المدني', + 'nationality' => 'الجنسية', + 'dob' => 'تاريخ الميلاد', + 'gender' => 'الجنس', + 'blood_group' => 'فصيلة الدم', + 'insurance_company' => 'شركة التأمين', + 'address' => 'العنوان', + 'male' => 'ذكر', + 'female' => 'أنثى', + 'other' => 'آخر', + 'edit_patient' => 'تعديل مريض', + 'delete_patient' => 'حذف مريض', + 'confirm_delete' => 'هل أنت متأكد من حذف', + 'add_doctor' => 'إضافة طبيب', + 'edit_doctor' => 'تعديل طبيب', + 'specialization_en' => 'التخصص (إنجليزي)', + 'specialization_ar' => 'التخصص (عربي)', + 'hr_management' => 'إدارة الموارد البشرية', + 'attendance' => 'الحضور والانصراف', + 'leave_requests' => 'طلبات الإجازة', + 'add_employee' => 'إضافة موظف', + 'edit_employee' => 'تعديل موظف', + 'delete_employee' => 'حذف موظف', + 'select_position' => 'اختر المسمى الوظيفي', + 'no_employees_found' => 'لم يتم العثور على موظفين', + 'visit_settings' => 'Visit Settings', + 'disable_visit_edit_24h' => 'Disable editing visits after 24 hours', + 'disable_visit_edit_24h_desc' => 'If enabled, visits cannot be edited 24 hours after their creation.', + 'details' => 'التفاصيل', + 'vitals' => 'المؤشرات الحيوية', + 'symptoms_diagnosis' => 'الأعراض والتشخيص', + 'treatment_plan' => 'خطة العلاج', + 'prescriptions' => 'الوصفات الطبية', + 'weight' => 'الوزن', + 'blood_pressure' => 'ضغط الدم', + 'heart_rate' => 'معدل ضربات القلب', + 'temperature' => 'درجة الحرارة', + 'symptoms' => 'الأعراض', + 'diagnosis' => 'التشخيص', + 'drug_name' => 'اسم الدواء', + 'dosage' => 'الجرعة', + 'instructions' => 'التعليمات', + 'add_drug' => 'إضافة دواء', + ), +); \ No newline at end of file