update v1.0.7.9
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -1,6 +1,5 @@
|
|||||||
# Please try and keep this file organized by alphabetical order. Single files first, then directories.
|
# Please try and keep this file organized by alphabetical order. Single files first, then directories.
|
||||||
.env
|
.env
|
||||||
example.env
|
|
||||||
Homestead.yaml
|
Homestead.yaml
|
||||||
Homestead.json
|
Homestead.json
|
||||||
/app/Plugins/Reseller/
|
/app/Plugins/Reseller/
|
||||||
|
@@ -484,10 +484,10 @@ class TicketController extends Controller
|
|||||||
$user_id = $tickets->user_id;
|
$user_id = $tickets->user_id;
|
||||||
$user = User::where('id', '=', $user_id)->first();
|
$user = User::where('id', '=', $user_id)->first();
|
||||||
$email = $user->email;
|
$email = $user->email;
|
||||||
$user_name = $user->user_name;
|
$user_name = $user->first_name;
|
||||||
$ticket_number = $tickets->ticket_number;
|
$ticket_number = $tickets->ticket_number;
|
||||||
$company = $this->company();
|
$company = $this->company();
|
||||||
$username = $ticket_user->user_name;
|
$username = $ticket_user->first_name;
|
||||||
if (!empty(Auth::user()->agent_sign)) {
|
if (!empty(Auth::user()->agent_sign)) {
|
||||||
$agentsign = Auth::user()->agent_sign;
|
$agentsign = Auth::user()->agent_sign;
|
||||||
} else {
|
} else {
|
||||||
|
18
example.env
Normal file
18
example.env
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
APP_ENV=production
|
||||||
|
APP_DEBUG=false
|
||||||
|
APP_KEY=SomeRandomString
|
||||||
|
DB_TYPE=
|
||||||
|
DB_HOST=
|
||||||
|
DB_PORT=
|
||||||
|
DB_DATABASE=
|
||||||
|
DB_USERNAME=
|
||||||
|
DB_PASSWORD=
|
||||||
|
DB_INSTALL=%0%
|
||||||
|
MAIL_DRIVER=smtp
|
||||||
|
MAIL_HOST=mailtrap.io
|
||||||
|
MAIL_PORT=2525
|
||||||
|
MAIL_USERNAME=null
|
||||||
|
MAIL_PASSWORD=null
|
||||||
|
CACHE_DRIVER=file
|
||||||
|
SESSION_DRIVER=file
|
||||||
|
QUEUE_DRIVER=sync
|
Reference in New Issue
Block a user