1 | <?php |
||
10 | class VerificationController extends Controller |
||
11 | { |
||
12 | /* |
||
13 | |-------------------------------------------------------------------------- |
||
14 | | Email Verification Controller |
||
15 | |-------------------------------------------------------------------------- |
||
16 | | |
||
17 | | This controller is responsible for handling email verification for any |
||
18 | | user that recently registered with the application. Emails may also |
||
19 | | be re-sent if the user didn't receive the original email message. |
||
20 | | |
||
21 | */ |
||
22 | |||
23 | use VerifiesEmails; |
||
24 | |||
25 | /** |
||
26 | * Where to redirect users when the intended url fails. |
||
27 | */ |
||
28 | protected function redirectTo() |
||
32 | |||
33 | /** |
||
34 | * Create a new controller instance. |
||
35 | */ |
||
36 | public function __construct() |
||
42 | |||
43 | /** |
||
44 | * Show the email verification notice. |
||
45 | * |
||
46 | * @param \Illuminate\Http\Request $request |
||
47 | * @return \Illuminate\Http\Response|\Illuminate\View\View |
||
48 | */ |
||
49 | public function show(Request $request) |
||
55 | |||
56 | /** |
||
57 | * Resend the email verification notification. |
||
58 | * |
||
59 | * @param \Illuminate\Http\Request $request |
||
60 | * @return \Illuminate\Http\RedirectResponse|Response |
||
61 | */ |
||
62 | public function resend(Request $request) |
||
79 | } |
||
80 |