Enhance solution management features: add title_description and bullets fields to SolutionResource, update OurSolutionPageController to fetch solutions in descending order, and create new views for displaying solutions with detailed descriptions and bullet points. Adjust CSS for active button styling and update navigation to reflect title instead of name for solutions.

This commit is contained in:
2025-07-28 20:33:38 +05:00
parent e2323c7949
commit 1b4989b440
8 changed files with 212 additions and 4 deletions

View File

@@ -13,5 +13,11 @@ class Solution extends Model
'title',
'description',
'slug',
'title_description',
'bullets',
];
protected $casts = [
'bullets' => 'array',
];
}