1 | <?php namespace Arcanesoft\Tracker\Http\Controllers\Admin; |
||
12 | abstract class Controller extends AdminController |
||
13 | { |
||
14 | /* ----------------------------------------------------------------- |
||
15 | | Traits |
||
16 | | ----------------------------------------------------------------- |
||
17 | */ |
||
18 | |||
19 | use Notifyable; |
||
20 | |||
21 | /* ----------------------------------------------------------------- |
||
22 | | Properties |
||
23 | | ----------------------------------------------------------------- |
||
24 | */ |
||
25 | |||
26 | /** |
||
27 | * The view namespace. |
||
28 | * |
||
29 | * @var string |
||
30 | */ |
||
31 | protected $viewNamespace = 'tracker'; |
||
32 | |||
33 | /* ----------------------------------------------------------------- |
||
34 | | Constructor |
||
35 | | ----------------------------------------------------------------- |
||
36 | */ |
||
37 | |||
38 | /** |
||
39 | * Controller constructor. |
||
40 | */ |
||
41 | public function __construct() |
||
47 | } |
||
48 |