@@ -32,7 +32,6 @@ class SupportTicket extends Mailable | |||||
$this->user_message = $user_message; | $this->user_message = $user_message; | ||||
$this->type = $ticket->type; | $this->type = $ticket->type; | ||||
$this->id = $ticket->id; | $this->id = $ticket->id; | ||||
Log::debug($this->user_message); | |||||
} | } | ||||
/** | /** | ||||
@@ -45,6 +44,7 @@ class SupportTicket extends Mailable | |||||
$this->view('support-ticket'); | $this->view('support-ticket'); | ||||
$this->from('donotreply@trendplays.com'); | $this->from('donotreply@trendplays.com'); | ||||
$this->subject("Ticket: $this->id, $this->type"); | $this->subject("Ticket: $this->id, $this->type"); | ||||
$this->replyTo($this->email); | |||||
return $this; | return $this; | ||||
} | } | ||||
} | } |
@@ -25,6 +25,10 @@ button { | |||||
font-family: 'PatuaOne', 'Times New Roman'; | font-family: 'PatuaOne', 'Times New Roman'; | ||||
} | } | ||||
textarea { | |||||
border: 1px solid grey; | |||||
} | |||||
h1 { | h1 { | ||||
color: white; | color: white; | ||||
} | } | ||||
@@ -786,6 +790,8 @@ main.panel { | |||||
} | } | ||||
.recent-pane, .history-pane{ | .recent-pane, .history-pane{ | ||||
min-width: 20em; | |||||
overflow: scroll; | |||||
table { | table { | ||||
border-spacing: 4px; | border-spacing: 4px; | ||||
margin: auto; | margin: auto; | ||||
@@ -871,7 +877,6 @@ main.panel { | |||||
} | } | ||||
.history-pane { | .history-pane { | ||||
overflow: visible; | |||||
transition: all 0.2s; | transition: all 0.2s; | ||||
.nav-btn { | .nav-btn { | ||||
width: 1.5em; | width: 1.5em; | ||||