Files
new_raffles/config/constants.php
Subash 165012ea56 feat: Add CostCalculator module with CRUD functionality and frontend integration
- Created new module for CostCalculator with necessary routes and controllers.
- Implemented views for creating, editing, and displaying costs.
- Added form partials for cost input with validation.
- Integrated living status options in the form.
- Developed frontend logic for cost calculation steps with dynamic UI updates.
- Included necessary assets (JS and SCSS) for styling and functionality.
- Updated constants for living status options.
- Enhanced existing client-side cost calculator page with new features.
2025-08-13 17:58:49 +05:45

87 lines
2.0 KiB
PHP

<?php
return [
'page_status_options' => [
'0' => 'Draft',
'1' => 'Published',
],
'page_type_options' => [
'page' => 'Page',
'widget' => 'Widget',
],
'menu_type_options' => [
'single-link' => 'Custom',
'pages' => "Page",
'blogs' => "Blog",
'services' => "Service",
'countries' => "Country",
],
'menu_location_options' => [
'1' => 'Main Menu',
'2' => "Footer Menu",
],
'redirect_options' => [
'_self' => 'Self',
'_blank' => 'New Tab',
],
'page_section_options' => [
'meta-section' => 'Meta',
'featured-image-section' => 'Featured Image',
'media-gallery-section' => 'Media Gallery',
'sidebar-section' => 'Sidebar',
'button-section' => 'Button',
'custom-field-section' => 'Custom Fields',
'link-section' => 'Link',
],
"gender_options" => [
"1" => "Male",
"2" => "Female",
],
"employee_status_options" => [
'active' => 'Active',
'on_leave' => 'On Leave',
'probation' => 'Probation',
'resigned' => 'Resigned',
'terminated' => 'Terminated',
'retired' => 'Retired',
'deceased' => 'Deceased',
'laid_off' => 'Laid Off',
'on_notice' => 'On Notice',
'suspended' => 'Suspended',
'furloughed' => 'Furloughed',
'part_time' => 'Part-Time',
'consultant' => 'Consultant',
'freelance' => 'Freelance',
],
'event_type_options' => [
1 => 'Meeting',
2 => 'Training Sessions',
3 => 'Seminars',
4 => 'Celebrations',
5 => 'Product Launches',
6 => 'Wellness Events',
],
'content_status_options' => [
11 => 'Draft',
12 => 'Scheduled',
13 => 'Published',
14 => 'Archived',
],
'living_status'=> [
1 => 'Alone',
2 => 'With Spouse',
3 => 'With Spouse and Child',
]
];