Menu
About LCS
Improvements
Improvement works on different projects 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...
Topic:
Laravel Code Snippets
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...
Topic:
Laravel Code Snippets
3 years ago
Showing created date on a post under topic list page - DONE
Showing created date under post title in topic list page
Topic:
Laravel Code Snippets
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...
Topic:
Laravel Code Snippets
3 years ago
Adding Search feature - DONE
Following pages will have search feature1. Home page - 4. DONE2. Community page - 1. DONE3. Topic page - 2....
Topic:
Laravel Code Snippets
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 }}...
Topic:
Laravel Code Snippets
3 years ago
Updated dom pdf that supports PHP 8 - DONE
In mini ecommerce dompdf which was setup previously was not working properly for exporting pdf within laravel with using php...
Topic:
Mini Ecommerce
3 years ago