1 | <?php namespace Arcanesoft\Auth\Http\Controllers\Admin; |
||
14 | class PasswordResetsController extends Controller |
||
15 | { |
||
16 | /* ----------------------------------------------------------------- |
||
17 | | Traits |
||
18 | | ----------------------------------------------------------------- |
||
19 | */ |
||
20 | use JsonResponses; |
||
21 | |||
22 | /* ----------------------------------------------------------------- |
||
23 | | Properties |
||
24 | | ----------------------------------------------------------------- |
||
25 | */ |
||
26 | /** @var int */ |
||
27 | protected $perPage = 30; |
||
28 | |||
29 | /* ----------------------------------------------------------------- |
||
30 | | Constructor |
||
31 | | ----------------------------------------------------------------- |
||
32 | */ |
||
33 | /** |
||
34 | * PasswordResetsController constructor. |
||
35 | */ |
||
36 | public function __construct() |
||
43 | |||
44 | /* ----------------------------------------------------------------- |
||
45 | | Main Methods |
||
46 | | ----------------------------------------------------------------- |
||
47 | */ |
||
48 | public function index() |
||
61 | |||
62 | public function delete() |
||
72 | |||
73 | public function clear() |
||
83 | |||
84 | /* ----------------------------------------------------------------- |
||
85 | | Other Methods |
||
86 | | ----------------------------------------------------------------- |
||
87 | */ |
||
88 | /** |
||
89 | * Notify with translation. |
||
90 | * |
||
91 | * @param string $action |
||
92 | * @param array $replace |
||
93 | * @param array $context |
||
94 | * |
||
95 | * @return string |
||
96 | */ |
||
97 | protected function transNotification($action, array $replace = [], array $context = []) |
||
107 | } |
||
108 |