Please bear with me. I have tried moving the project to github but I can't seem to see it. I'm trying to figure it out. I ask for your patience.
Give it a name, select private and click create. Now just follow the instructions
@mikeyuko side track abit, what ticketing software is this?
@laracoft ,@sinnbeck it is a helpdesk software for the IT department in my organisation where we can receive requests, attend to them based on priorities, generate reports in word, excel, pdf and other extensions. I got the source code from github and I want to modify it to meet the needs of my organisation so we could work with it in the department. I have the original software on github but I'm struggling to send the one I've modified so far so I can get help. However, the original application is still on github. Would it be okay to share that or the one I've modified so far?
The original is fine for a start
@mikeyuko to solve your problem, you must share your code. Good to share the original repository too so that it's easier for us to figure out what you changed.
Why don't you just head to the original GitHub repository and fork a copy of it?
@laracoft please i am still waiting for your ID to add you up to the project
@mikeyuko are you on discord ?
@ravish i am not on discord
MAIL_FROM_ADDRESS=null
didnt you put sender's email here instead of null ??? @mikeyuko Share your current env code excluding sensitive data
@ravish I just created a discord account. I would like to modify the application to have a REPORT option on the dashboard where I can generate report on the number of tickets attended to upon request of my supervisor. Secondly, when I clicked on the submit button after filling the option of the ticket it gave me errors. I also wanted to add some minor features that would be of help, like notifications on the dashboard when a new ticket is submitted. On the home page, I would have loved to change the Laravel header to that of our organisation
@ravish I did. I registered an account with mailtrap.io and filled the information appropriately
APP_KEY=base64:YvngKKSPN3ND/xCIS9rtaP+Yo7MEJZLx+tTOzMIYiaE=
APP_DEBUG=true
APP_URL=http://localhost
LOG_CHANNEL=stack
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=support-ticketing
DB_USERNAME=root
DB_PASSWORD=
BROADCAST_DRIVER=pusher
CACHE_DRIVER=file
QUEUE_CONNECTION=sync
SESSION_DRIVER=file
SESSION_LIFETIME=120
REDIS_HOST=127.0.0.1
REDIS_PASSWORD=null
REDIS_PORT=6379
MAIL_MAILER=smtp
MAIL_HOST=smtp.mailtrap.io
MAIL_PORT=2525
MAIL_USERNAME=
MAIL_PASSWORD=
MAIL_ENCRYPTION=tls
MAIL_FROM_ADDRESS=null
MAIL_FROM_NAME="${APP_NAME}"
AWS_ACCESS_KEY_ID=
AWS_SECRET_ACCESS_KEY=
AWS_DEFAULT_REGION=us-east-1
AWS_BUCKET=
PUSHER_APP_ID=1095035
PUSHER_APP_KEY=
PUSHER_APP_SECRET=
PUSHER_APP_CLUSTER=eu
MIX_PUSHER_APP_KEY="${PUSHER_APP_KEY}"
MIX_PUSHER_APP_CLUSTER="${PUSHER_APP_CLUSTER}" ```
type this and u r done
// download project
composer install
php artisan generate:key
php artisan migrate:seed
//change your env settings
php artisan config:cache
now it should work. ! cheers
Please or to participate in this conversation.