PATH:
home
/
lab2454c
/
vaultchip.com
/
platform
/
plugins
/
audit-log
/
src
/
Facades
<?php namespace Botble\AuditLog\Facades; use Botble\AuditLog\AuditLog; use Illuminate\Support\Facades\Facade; class AuditLogFacade extends Facade { /** * Get the registered name of the component. * * @return string */ protected static function getFacadeAccessor() { return AuditLog::class; } }
[+]
..
[-] AuditLogFacade.php
[edit]