ManageSpotController.php 529 Bytes
<?php
/**
 * Created by PhpStorm.
 * User: Administrator
 * Date: 2018/3/14
 * Time: 14:04
 */

namespace App\Http\Controllers\Backend\ManageSpot;


use App\Http\Controllers\Controller;
use App\Repositories\Backend\ManageSpot\ManageSpotRepository;
class ManageSpotController extends  Controller
{
    private $managespot;



    public function __construct(ManageSpotRepository $managespot)
    {
        $this->managespot = $managespot;
    }

    public function index()
    {
        return view('backend.spot.index');
    }
}