1 | <?php namespace Arcanesoft\Pages\Bases; |
||
12 | class FoundationController extends BaseController |
||
13 | { |
||
14 | /* ------------------------------------------------------------------------------------------------ |
||
15 | | Traits |
||
16 | | ------------------------------------------------------------------------------------------------ |
||
17 | */ |
||
18 | use Notifyable; |
||
19 | |||
20 | /* ------------------------------------------------------------------------------------------------ |
||
21 | | Properties |
||
22 | | ------------------------------------------------------------------------------------------------ |
||
23 | */ |
||
24 | /** |
||
25 | * The view namespace. |
||
26 | * |
||
27 | * @var string |
||
28 | */ |
||
29 | protected $viewNamespace = 'pages'; |
||
30 | |||
31 | /* ------------------------------------------------------------------------------------------------ |
||
32 | | Constructor |
||
33 | | ------------------------------------------------------------------------------------------------ |
||
34 | */ |
||
35 | /** |
||
36 | * Instantiate the controller. |
||
37 | */ |
||
38 | public function __construct() |
||
44 | } |
||
45 |