-
Notifications
You must be signed in to change notification settings - Fork 564
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
94f4c49
commit 561a4a2
Showing
54 changed files
with
2,499 additions
and
184 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,19 @@ | ||
<IfModule mod_rewrite.c> | ||
<IfModule mod_negotiation.c> | ||
Options -MultiViews | ||
</IfModule> | ||
<IfModule mod_negotiation.c> | ||
Options -MultiViews | ||
</IfModule> | ||
|
||
RewriteEngine On | ||
RewriteEngine On | ||
|
||
# Redirect Trailing Slashes... | ||
RewriteRule ^(.*)/$ /$1 [L,R=301] | ||
# Redirect Trailing Slashes… | ||
#RewriteRule ^(.*)/$ /$1 [L,R=301] | ||
RewriteCond %{HTTP_HOST} !^$ | ||
RewriteCond %{HTTP_HOST} !^www\. [NC] | ||
RewriteCond %{HTTPS}s ^on(s)| | ||
RewriteRule ^ http%1://www.%{HTTP_HOST}%{REQUEST_URI} [R=301,L] | ||
|
||
# Handle Front Controller... | ||
RewriteCond %{REQUEST_FILENAME} !-d | ||
RewriteCond %{REQUEST_FILENAME} !-f | ||
RewriteRule ^ index.php [L] | ||
# Handle Front Controller… | ||
RewriteCond %{REQUEST_FILENAME} !-d | ||
RewriteCond %{REQUEST_FILENAME} !-f | ||
RewriteRule ^ index.php [L] | ||
</IfModule> | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
/vendor | ||
/node_modules | ||
.env |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<?php namespace App\Events; | ||
|
||
use App\Events\Event; | ||
|
||
use Illuminate\Queue\SerializesModels; | ||
|
||
class ClientTicketForm extends Event { | ||
|
||
use SerializesModels; | ||
|
||
public $para1; | ||
public $para2; | ||
public $para3; | ||
public $para4; | ||
public $para5; | ||
|
||
public function __construct($para1='',$para2='',$para3='',$para4='',$para5='') | ||
{ | ||
$this->para1 = $para1; | ||
$this->para2 = $para2; | ||
$this->para3 = $para3; | ||
$this->para4 = $para4; | ||
$this->para5 = $para5; | ||
|
||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
<?php namespace App\Events; | ||
|
||
use App\Events\Event; | ||
|
||
use Illuminate\Queue\SerializesModels; | ||
|
||
class ClientTicketFormPost extends Event { | ||
|
||
use SerializesModels; | ||
|
||
public $para1; | ||
public $para2; | ||
public $para3; | ||
public $para4; | ||
public $para5; | ||
|
||
public function __construct($para1='',$para2='',$para3='',$para4='',$para5='') | ||
{ | ||
$this->para1 = $para1; | ||
$this->para2 = $para2; | ||
$this->para3 = $para3; | ||
$this->para4 = $para4; | ||
$this->para5 = $para5; | ||
|
||
} | ||
|
||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
<?php namespace App\Events; | ||
|
||
use App\Events\Event; | ||
|
||
use Illuminate\Queue\SerializesModels; | ||
|
||
class FaveoAfterReply extends Event { | ||
|
||
use SerializesModels; | ||
public $para1; | ||
public $para2; | ||
public $para3; | ||
public $para4; | ||
public $para5; | ||
|
||
/** | ||
* Create a new event instance. | ||
* | ||
* @return void | ||
*/ | ||
public function __construct($para1='',$para2='',$para3='',$para4='',$para5='') | ||
{ | ||
$this->para1 = $para1; | ||
$this->para2 = $para2; | ||
$this->para3 = $para3; | ||
$this->para4 = $para4; | ||
$this->para5 = $para5; | ||
} | ||
|
||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
<?php namespace App\Events; | ||
|
||
use App\Events\Event; | ||
|
||
use Illuminate\Queue\SerializesModels; | ||
|
||
class FormRegisterEvent extends Event { | ||
|
||
use SerializesModels; | ||
|
||
public $para1; | ||
public $para2; | ||
public $para3; | ||
public $para4; | ||
public $para5; | ||
|
||
/** | ||
* Create a new event instance. | ||
* | ||
* @return void | ||
*/ | ||
public function __construct($para1='',$para2='',$para3='',$para4='',$para5='') | ||
{ | ||
$this->para1 = $para1; | ||
$this->para2 = $para2; | ||
$this->para3 = $para3; | ||
$this->para4 = $para4; | ||
$this->para5 = $para5; | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
<?php namespace App\Events; | ||
|
||
use App\Events\Event; | ||
|
||
use Illuminate\Queue\SerializesModels; | ||
|
||
class LoginEvent extends Event { | ||
|
||
use SerializesModels; | ||
public $para1; | ||
public $para2; | ||
public $para3; | ||
public $para4; | ||
public $para5; | ||
|
||
/** | ||
* Create a new event instance. | ||
* | ||
* @return void | ||
*/ | ||
public function __construct($para1='',$para2='',$para3='',$para4='',$para5='') | ||
{ | ||
$this->para1 = $para1; | ||
$this->para2 = $para2; | ||
$this->para3 = $para3; | ||
$this->para4 = $para4; | ||
$this->para5 = $para5; | ||
} | ||
|
||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
<?php namespace App\Events; | ||
|
||
use App\Events\Event; | ||
|
||
use Illuminate\Queue\SerializesModels; | ||
|
||
class PostRegisterEvent extends Event { | ||
|
||
use SerializesModels; | ||
public $para1; | ||
public $para2; | ||
public $para3; | ||
public $para4; | ||
public $para5; | ||
|
||
/** | ||
* Create a new event instance. | ||
* | ||
* @return void | ||
*/ | ||
public function __construct($para1='',$para2='',$para3='',$para4='',$para5='') | ||
{ | ||
$this->para1 = $para1; | ||
$this->para2 = $para2; | ||
$this->para3 = $para3; | ||
$this->para4 = $para4; | ||
$this->para5 = $para5; | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
<?php namespace App\Events; | ||
|
||
use App\Events\Event; | ||
|
||
use Illuminate\Queue\SerializesModels; | ||
|
||
class ReadMailEvent extends Event { | ||
|
||
use SerializesModels; | ||
public $para1; | ||
public $para2; | ||
public $para3; | ||
public $para4; | ||
public $para5; | ||
|
||
/** | ||
* Create a new event instance. | ||
* | ||
* @return void | ||
*/ | ||
public function __construct($para1='',$para2='',$para3='',$para4='',$para5='') | ||
{ | ||
$this->para1 = $para1; | ||
$this->para2 = $para2; | ||
$this->para3 = $para3; | ||
$this->para4 = $para4; | ||
$this->para5 = $para5; | ||
} | ||
|
||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
<?php namespace App\Events; | ||
|
||
use App\Events\Event; | ||
|
||
use Illuminate\Queue\SerializesModels; | ||
|
||
class TicketBoxHeader extends Event { | ||
|
||
use SerializesModels; | ||
public $para1; | ||
public $para2; | ||
public $para3; | ||
public $para4; | ||
public $para5; | ||
|
||
/** | ||
* Create a new event instance. | ||
* | ||
* @return void | ||
*/ | ||
public function __construct($para1='',$para2='',$para3='',$para4='',$para5='') | ||
{ | ||
$this->para1 = $para1; | ||
$this->para2 = $para2; | ||
$this->para3 = $para3; | ||
$this->para4 = $para4; | ||
$this->para5 = $para5; | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
<?php namespace App\Events; | ||
|
||
use App\Events\Event; | ||
|
||
use Illuminate\Queue\SerializesModels; | ||
|
||
class TicketDetailTable extends Event { | ||
|
||
use SerializesModels; | ||
public $para1; | ||
public $para2; | ||
public $para3; | ||
public $para4; | ||
public $para5; | ||
|
||
/** | ||
* Create a new event instance. | ||
* | ||
* @return void | ||
*/ | ||
public function __construct($para1='',$para2='',$para3='',$para4='',$para5='') | ||
{ | ||
$this->para1 = $para1; | ||
$this->para2 = $para2; | ||
$this->para3 = $para3; | ||
$this->para4 = $para4; | ||
$this->para5 = $para5; | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
<?php namespace App\Events; | ||
|
||
use App\Events\Event; | ||
|
||
use Illuminate\Queue\SerializesModels; | ||
|
||
class TimeLineFormEvent extends Event { | ||
|
||
use SerializesModels; | ||
public $para1; | ||
public $para2; | ||
public $para3; | ||
public $para4; | ||
public $para5; | ||
|
||
/** | ||
* Create a new event instance. | ||
* | ||
* @return void | ||
*/ | ||
public function __construct($para1='',$para2='',$para3='',$para4='',$para5='') | ||
{ | ||
$this->para1 = $para1; | ||
$this->para2 = $para2; | ||
$this->para3 = $para3; | ||
$this->para4 = $para4; | ||
$this->para5 = $para5; | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
<?php namespace App\Events; | ||
|
||
use App\Events\Event; | ||
|
||
use Illuminate\Queue\SerializesModels; | ||
|
||
class Timeline extends Event { | ||
|
||
use SerializesModels; | ||
|
||
public $para1; | ||
public $para2; | ||
public $para3; | ||
public $para4; | ||
public $para5; | ||
|
||
/** | ||
* Create a new event instance. | ||
* | ||
* @return void | ||
*/ | ||
public function __construct($para1='',$para2='',$para3='',$para4='',$para5='') | ||
{ | ||
$this->para1 = $para1; | ||
$this->para2 = $para2; | ||
$this->para3 = $para3; | ||
$this->para4 = $para4; | ||
$this->para5 = $para5; | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<?php namespace App\Events; | ||
|
||
use App\Events\Event; | ||
|
||
use Illuminate\Queue\SerializesModels; | ||
|
||
class TopNavEvent extends Event { | ||
|
||
use SerializesModels; | ||
|
||
/** | ||
* Create a new event instance. | ||
* | ||
* @return void | ||
*/ | ||
public function __construct() | ||
{ | ||
// | ||
} | ||
|
||
} |
Oops, something went wrong.