26 lines
538 B
PHP
26 lines
538 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace Webkul\Admin\Http\Controllers;
|
||
|
|
|
||
|
|
use Illuminate\Http\Request;
|
||
|
|
use Illuminate\Http\Response;
|
||
|
|
use Illuminate\Routing\Controller;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Dashboard controller
|
||
|
|
*
|
||
|
|
* @author Jitendra Singh <jitendra@webkul.com>
|
||
|
|
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
||
|
|
*/
|
||
|
|
class DashboardController extends Controller
|
||
|
|
{
|
||
|
|
/**
|
||
|
|
* Display a listing of the resource.
|
||
|
|
*
|
||
|
|
* @return \Illuminate\Http\Response
|
||
|
|
*/
|
||
|
|
public function index()
|
||
|
|
{
|
||
|
|
return view('admin::dashboard.index');
|
||
|
|
}
|
||
|
|
}
|