feat: implement Company History module with CRUD functionality, localization support, and timeline display for enhanced user experience

This commit is contained in:
Ümit Tunç
2026-05-21 19:33:38 +03:00
parent a9d6f17e3c
commit c82dd5c6b6
17 changed files with 1271 additions and 2 deletions
+62
View File
@@ -0,0 +1,62 @@
<?php
return [
'navigation_group' => 'Corporate',
'title' => 'Company History',
'navigation_label' => 'Company History',
'model_label' => 'History Item',
'plural_model_label' => 'Company History',
'create' => 'New History Item',
'edit' => 'Edit History Item',
'delete' => 'Delete',
'restore' => 'Restore',
'force_delete' => 'Force Delete',
'content_section' => 'Content',
'settings_section' => 'Appearance & Settings',
'year_field' => 'Year',
'title_field' => 'Title',
'content_field' => 'Description',
'color_field' => 'Color',
'icon_field' => 'Icon',
'position_field' => 'Position',
'position_auto' => 'Automatic (by order)',
'position_left' => 'Left',
'position_right' => 'Right',
'is_active_field' => 'Active',
'sort_order_field' => 'Sort Order',
'table_year' => 'Year',
'table_title' => 'Title',
'table_is_active' => 'Active',
'table_created_at' => 'Created',
'table_updated_at' => 'Updated',
'created_successfully' => 'History item created successfully.',
'updated_successfully' => 'History item updated successfully.',
'deleted_successfully' => 'History item deleted successfully.',
'timeline_start' => 'START',
'timeline_finish' => 'TODAY',
'timeline_section_badge' => 'Our History',
'timeline_section_title' => 'The Trunçgil Technology Journey',
'timeline_section_subtitle' => 'Our steps in technology and innovation from 2014 to today',
'icon_building' => 'Foundation / Building',
'icon_academic' => 'Academic / Education',
'icon_globe' => 'Global / Export',
'icon_users' => 'Users / Healthcare',
'icon_trophy' => 'Award / Achievement',
'icon_map' => 'Map / Location',
'icon_light_bulb' => 'Innovation',
'icon_rocket' => 'Growth',
'color_teal' => 'Teal',
'color_orange' => 'Orange',
'color_pink' => 'Pink',
'color_navy' => 'Navy',
'color_blue' => 'Blue',
'color_green' => 'Green',
];