View file vendor/illuminate/support/Facades/Gate.php
<?php namespace Illuminate\Support\Facades; /** * @see \Illuminate\Contracts\Auth\Access\Gate */ class Gate extends Facade { /** * Get the registered name of the component. * * @return string */ protected static function getFacadeAccessor() { return 'Illuminate\Contracts\Auth\Access\Gate'; } }