| 1 |
<?php |
| 2 |
namespace Depicter\Controllers\Admin; |
| 3 |
|
| 4 |
use WPEmerge\Requests\Request; |
| 5 |
use WPEmerge\View\ViewInterface; |
| 6 |
|
| 7 |
class DashboardController { |
| 8 |
/** |
| 9 |
* Handle the index page. |
| 10 |
* |
| 11 |
* @param Request $request |
| 12 |
* @param string $view the view that WordPress was trying to load |
| 13 |
* @return ViewInterface |
| 14 |
*/ |
| 15 |
public function index( Request $request, $view ) { |
| 16 |
return \Depicter::view( 'admin/dashboard/index.php' )->with([]); |
| 17 |
} |
| 18 |
} |
| 19 |
|