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