Encore\Admin\Auth\Permission::error PHP 메소드

error() 보호된 정적인 메소드

Send error response page.
protected static error ( )
    protected static function error()
    {
        $content = Admin::content(function ($content) {
            $content->body(view('admin::deny'));
        });
        response($content)->send();
        exit;
    }