개요
- 라라벨 파사드 Auth
- 라라벨 Auth
<?php
namespace Illuminate\Support\Facades;
class Auth extends Facade
{
protected static function getFacadeAccessor()
{
return 'auth';
}
}
<?php
namespace Illuminate\Support\Facades;
class Auth extends Facade
{
protected static function getFacadeAccessor()
{
return 'auth';
}
}