1 | <?php |
||
7 | class Admin |
||
8 | { |
||
9 | /** |
||
10 | * @var \Illuminate\Foundation\Application |
||
11 | */ |
||
12 | protected $app; |
||
13 | |||
14 | 48 | public function __construct(Application $app) |
|
18 | |||
19 | /** |
||
20 | * Register the routes for an application. |
||
21 | * |
||
22 | * @return void |
||
23 | */ |
||
24 | 3 | public function routes() |
|
28 | |||
29 | /** |
||
30 | * Component entity |
||
31 | * |
||
32 | * @return \Sco\Admin\Contracts\ComponentInterface |
||
33 | */ |
||
34 | 3 | public function component() |
|
38 | } |
||
39 |