1 | <?php namespace Arcanedev\LogViewer\Http\Controllers; |
||
11 | abstract class Controller extends IlluminateController |
||
12 | { |
||
13 | /* ------------------------------------------------------------------------------------------------ |
||
14 | | Properties |
||
15 | | ------------------------------------------------------------------------------------------------ |
||
16 | */ |
||
17 | /** |
||
18 | * The log viewer instance |
||
19 | * |
||
20 | * @var \Arcanedev\LogViewer\Contracts\LogViewer |
||
21 | */ |
||
22 | protected $logViewer; |
||
23 | |||
24 | /* ------------------------------------------------------------------------------------------------ |
||
25 | | Constructor |
||
26 | | ------------------------------------------------------------------------------------------------ |
||
27 | */ |
||
28 | public function __construct() |
||
32 | |||
33 | /* ------------------------------------------------------------------------------------------------ |
||
34 | | Main Functions |
||
35 | | ------------------------------------------------------------------------------------------------ |
||
36 | */ |
||
37 | /** |
||
38 | * Get the evaluated view contents for the given view. |
||
39 | * |
||
40 | * @param string $view |
||
41 | * @param array $data |
||
42 | * @param array $mergeData |
||
43 | * |
||
44 | * @return \Illuminate\View\View |
||
45 | */ |
||
46 | public function view($view, $data = [], $mergeData = []) |
||
50 | } |
||
51 |