https://github.com/bitfumes/in-depth-laravel-2023-module-1
laravel 10 course for beginners
https://github.com/bitfumes/in-depth-laravel-2023-module-1
Last synced: about 2 months ago
JSON representation
laravel 10 course for beginners
- Host: GitHub
- URL: https://github.com/bitfumes/in-depth-laravel-2023-module-1
- Owner: bitfumes
- Created: 2023-02-16T03:12:33.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-06-02T17:52:51.000Z (almost 2 years ago)
- Last Synced: 2025-04-13T11:05:54.504Z (about 2 months ago)
- Language: PHP
- Size: 245 KB
- Stars: 35
- Watchers: 2
- Forks: 22
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Laravel 10 Course
## Get this course from Bitfumes youtube channel
#### Project Idea
1. User can create a new help ticket
2. Admin and user can reply on help ticket
3. Admin can reject or resolve the ticket
4. When admin update on the ticket then user will get one notification via email that ticket status is updated
5. User can give ticket title and description
6. User can upload a document like pdf or image#### Table Structure
1. Tickets
- title( string ) {required}
- description(text) {required}
- status(open {default}, resolved, rejected)
- attachment(string) {nullable}
- user_id {required} filled by laravel
- status_changed_by_id {nullable}2. Replies
- body(text) {required}
- user_id {required} filled by laravel
- ticket_id {required} filled by laravel