本文整理汇总了PHP中App\Http\Controllers\Controller类的典型用法代码示例。如果您正苦于以下问题:PHP Controller类的具体用法?PHP Controller怎么用?PHP Controller使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了Controller类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: __construct
/**
* FlyersController constructor.
*/
public function __construct()
{
// everybody must be authenticated to access the methods
// except for the show method
$this->middleware('auth', ['except' => ['show']]);
parent::__construct();
}
示例2: __construct
/**
* Constructor.
*
* @param type \Litecms\PriceList\Interfaces\PriceListRepositoryInterface $pricelist
*
* @return type
*/
public function __construct(PriceListRepositoryInterface $pricelist)
{
$this->repository = $pricelist;
$this->middleware('web');
$this->setupTheme(config('theme.themes.public.theme'), config('theme.themes.public.layout'));
parent::__construct();
}
示例3: __construct
public function __construct(PartRepositoryEloquent $partRepo, TireSensorRepositoryEloquent $tireSensorRepo)
{
parent::__construct();
$this->middleware('auth');
$this->partRepo = $partRepo;
$this->tireSensorRepo = $tireSensorRepo;
}
示例4: __construct
/**
* @param DbBookRepository $bookRepository
* @param AjaxBookRepository $ajaxRepository
*/
public function __construct(DbBookRepository $bookRepository, AjaxBookRepository $ajaxRepository)
{
$this->middleware('acl:create_book', ['only' => ['index', 'create', 'store', 'edit', 'update', 'ajaxSearchISBN']]);
$this->book = $bookRepository;
$this->ajax = $ajaxRepository;
parent::__construct();
}
示例5: __construct
public function __construct()
{
$this->middleware('auth');
//$this->user = Auth::user();
parent::__construct();
}
示例6: __construct
/**
* Abort if request is not ajax
* @param Request $request
*/
public function __construct(Request $request)
{
if (!$request->ajax() || !Datatable::shouldHandle()) {
abort(403, 'Forbidden');
}
parent::__construct();
}
示例7: __construct
public function __construct()
{
parent::__construct();
$this->roleModel = new Role();
$this->appModel = new App();
$this->authModel = new Auth();
}
示例8: __construct
/**
* Add the permissions requirements for each route.
*/
public function __construct()
{
// Require authentication
$this->middleware('auth.permission:member', ['except' => ['dash', 'getMyProfile', 'postMyProfile', 'updatePassword', 'dashSU', 'profile']]);
$this->middleware('auth', ['only' => ['dash', 'dashSU', 'getMyProfile', 'postMyProfile', 'updatePassword', 'profile']]);
parent::__construct();
}
示例9: __construct
/**
* Create a new authentication controller instance.
*
* @param \Illuminate\Contracts\Auth\Guard $auth
* @param \Illuminate\Contracts\Auth\Registrar $registrar
* @return void
*/
public function __construct(Guard $auth, Registrar $registrar)
{
parent::__construct();
$this->auth = $auth;
$this->registrar = $registrar;
$this->middleware('guest', ['except' => 'getLogout']);
}
示例10: __construct
public function __construct()
{
$this->middleware('api');
$this->middleware('jwt.auth:api');
$this->setupTheme(config('theme.themes.user.theme'), config('theme.themes.user.layout'));
parent::__construct();
}
示例11: __construct
public function __construct()
{
parent::__construct();
if (\Session::has('admin.username')) {
$this->userid = \Session::get('admin.adminid');
}
}
示例12: __construct
public function __construct()
{
Stripe::setApiVersion(config('services.stripe.api_version'));
$this->middleware('auth');
$this->postman = new Postman();
parent::__construct();
}
示例13:
function __construct()
{
parent::__construct();
if (!$this->isAdmin($this->getLoggedInUser())) {
throw new \Exception("Not allowed, only admin has access", 401);
}
}
示例14: __construct
public function __construct(UserRepository $user, RoleRepository $role, PermissionRepository $perms)
{
parent::__construct();
$this->user = $user;
$this->role = $role;
$this->permission = $perms;
}
示例15: __construct
public function __construct(Request $request)
{
parent::__construct($request);
if (Auth::user()->role != "supadmin") {
abort(402, "Unauthorized");
}
}