Without share.

This commit is contained in:
2019-11-15 12:14:38 +03:00
commit b3c03162f1
16 changed files with 898 additions and 0 deletions

14
src/Facades/Settings.php Executable file
View File

@ -0,0 +1,14 @@
<?php namespace Efriandika\LaravelSettings\Facades;
use Illuminate\Support\Facades\Facade;
class Settings extends Facade {
/**
* Get the registered name of the component.
*
* @return string
*/
protected static function getFacadeAccessor() { return 'settings'; }
}