/
home
/
sjslayjy
/
public_html
/
olddevlok
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Auth
/
Access
/
Upload File
HOME
<?php namespace Illuminate\Auth\Access; trait HandlesAuthorization { /** * Create a new access response. * * @param string|null $message * @return \Illuminate\Auth\Access\Response */ protected function allow($message = null) { return new Response($message); } /** * Throws an unauthorized exception. * * @param string $message * @return void * * @throws \Illuminate\Auth\Access\AuthorizationException */ protected function deny($message = 'This action is unauthorized.') { throw new AuthorizationException($message); } }