Menu
About LCS
Laravel Code Snippets
Improvement work on laravel code snippet will be listed here
Adding delete for community, topic, post and comments separately - DONE
Adding delete for community, topic, post and comments separately1. When posts are deleted comments under those will also get deleted...
Category:
Improvements
3 years ago
Post count for a topic is showing incorrectly under community page - DONE
DefinitionsGenerating Commands (0) Query Builder (11) -> Now it should show 0 instead showing 11Resource Controllers (0) Seeding (0) Basically...
Category:
Improvements
3 years ago
Showing created date on a post under topic list page - DONE
Showing created date under post title in topic list page
Category:
Improvements
3 years ago
Adding Meta for each page - DONE
Adding Meta for each page1. Home page - 8.DONE2. Community list page - 9.DONE3. Community create page - 10.DONE4. Community...
Category:
Improvements
3 years ago
Adding Search feature - DONE
Following pages will have search feature1. Home page - 4. DONE2. Community page - 1. DONE3. Topic page - 2....
Category:
Improvements
3 years ago
Challenges faced implementing laravel code snippets project
1. Showing appropriate post count for community and topic$communities = Community::with(['topics'])->where('user_id', auth()->id())->orderBy('id', 'desc')->get(); @forelse ($community->topics as $topic) {{ $topic->name }}...
Category:
Improvements
3 years ago