-
-
Notifications
You must be signed in to change notification settings - Fork 72
/
Copy pathexceptions.php
88 lines (72 loc) · 2.6 KB
/
exceptions.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<?php
return [
/*
|--------------------------------------------------------------------------
| Exception Email Enabled
|--------------------------------------------------------------------------
|
| Enable/Disable exception email notifications
|
*/
'emailExceptionEnabled' => env('EMAIL_EXCEPTION_ENABLED'),
'emailExceptionEnabledDefault' => true,
/*
|--------------------------------------------------------------------------
| Exception Email From
|--------------------------------------------------------------------------
|
| This is the email your exception will be from.
|
*/
'emailExceptionFrom' => env('EMAIL_EXCEPTION_FROM'),
'emailExceptionFromDefault' => '[email protected]',
/*
|--------------------------------------------------------------------------
| Exception Email To
|--------------------------------------------------------------------------
|
| This is the email(s) the exceptions will be emailed to.
|
*/
'emailExceptionsTo' => env('EMAIL_EXCEPTION_TO'),
'emailExceptionsToDefault' => '[email protected]',
/*
|--------------------------------------------------------------------------
| Exception Email CC
|--------------------------------------------------------------------------
|
| This is the email(s) the exceptions will be CC emailed to.
|
*/
'emailExceptionCCto' => env('EMAIL_EXCEPTION_CC'),
'emailExceptionCCtoDefault' => [],
/*
|--------------------------------------------------------------------------
| Exception Email BCC
|--------------------------------------------------------------------------
|
| This is the email(s) the exceptions will be BCC emailed to.
|
*/
'emailExceptionBCCto' => env('EMAIL_EXCEPTION_BCC'),
'emailExceptionBCCtoDefault' => [],
/*
|--------------------------------------------------------------------------
| Exception Email Subject
|--------------------------------------------------------------------------
|
| This is the subject of the exception email
|
*/
'emailExceptionSubject' => env('EMAIL_EXCEPTION_SUBJECT'),
'emailExceptionSubjectDefault' => 'Error on '.config('app.env'),
/*
|--------------------------------------------------------------------------
| Exception Email View
|--------------------------------------------------------------------------
|
| This is the view that will be used for the email.
|
*/
'emailExceptionView' => 'emails.exception',
];