feat: implement full-stack awards module with Filament management, database support, and localization.

This commit is contained in:
Ümit Tunç
2026-05-27 06:32:31 +03:00
parent 05e8059b5d
commit 3c92a81cfe
14 changed files with 1127 additions and 0 deletions
+47
View File
@@ -0,0 +1,47 @@
<?php
return [
'navigation_group' => 'Corporate',
'title' => 'Our Awards',
'navigation_label' => 'Our Awards',
'model_label' => 'Award',
'plural_model_label' => 'Our Awards',
'create' => 'Add New Award',
'edit' => 'Edit Award',
'delete' => 'Delete',
'restore' => 'Restore',
'force_delete' => 'Force Delete',
'content_section' => 'Award Details',
'settings_section' => 'Award Settings',
'title_field' => 'Award Title',
'issuer_field' => 'Issuing Organization',
'description_field' => 'Description',
'image_field' => 'Award Logo / Badge',
'date_field' => 'Award Date',
'category_field' => 'Category',
'link_field' => 'News / Verification Link',
'sort_order_field' => 'Sort Order',
'is_featured_field' => 'Feature Award',
'is_active_field' => 'Active / Visible',
'table_image' => 'Logo',
'table_title' => 'Award Title',
'table_issuer' => 'Issuer',
'table_date' => 'Date',
'table_category' => 'Category',
'table_is_featured' => 'Featured',
'table_is_active' => 'Active',
'created_successfully' => 'Award successfully created.',
'updated_successfully' => 'Award successfully updated.',
'deleted_successfully' => 'Award successfully deleted.',
'category_hackathon' => 'Hackathon / Competition',
'category_export' => 'Export / Success',
'category_innovation' => 'Innovation / R&D',
'category_design' => 'Design / UI',
'category_general' => 'General Award',
];