1 | <?php namespace Arcanesoft\Auth\Http\Controllers\Admin; |
||
14 | class PasswordResetsController extends Controller |
||
15 | { |
||
16 | /* ----------------------------------------------------------------- |
||
17 | | Traits |
||
18 | | ----------------------------------------------------------------- |
||
19 | */ |
||
20 | |||
21 | use JsonResponses; |
||
22 | |||
23 | /* ----------------------------------------------------------------- |
||
24 | | Properties |
||
25 | | ----------------------------------------------------------------- |
||
26 | */ |
||
27 | |||
28 | /** @var int */ |
||
29 | protected $perPage = 30; |
||
30 | |||
31 | /* ----------------------------------------------------------------- |
||
32 | | Constructor |
||
33 | | ----------------------------------------------------------------- |
||
34 | */ |
||
35 | |||
36 | /** |
||
37 | * PasswordResetsController constructor. |
||
38 | */ |
||
39 | public function __construct() |
||
46 | |||
47 | /* ----------------------------------------------------------------- |
||
48 | | Main Methods |
||
49 | | ----------------------------------------------------------------- |
||
50 | */ |
||
51 | |||
52 | public function index() |
||
65 | |||
66 | public function delete() |
||
76 | |||
77 | public function clear() |
||
87 | |||
88 | /* ----------------------------------------------------------------- |
||
89 | | Other Methods |
||
90 | | ----------------------------------------------------------------- |
||
91 | */ |
||
92 | |||
93 | /** |
||
94 | * Notify with translation. |
||
95 | * |
||
96 | * @param string $action |
||
97 | * @param array $replace |
||
98 | * @param array $context |
||
99 | * |
||
100 | * @return string |
||
101 | */ |
||
102 | protected function transNotification($action, array $replace = [], array $context = []) |
||
112 | } |
||
113 |