├── LICENSE.md ├── README.md ├── bin └── build.js ├── composer.json ├── config └── filament-easy-footer.php ├── resources └── views │ ├── .gitkeep │ ├── easy-footer.blade.php │ └── github-version.blade.php ├── src ├── EasyFooter.php ├── EasyFooterPlugin.php ├── EasyFooterServiceProvider.php ├── Facades │ └── EasyFooter.php ├── Livewire │ └── GitHubVersion.php ├── Services │ └── GitHubService.php └── Testing │ └── TestsEasyFooter.php └── stubs └── .gitkeep /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devonab/filament-easy-footer/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devonab/filament-easy-footer/HEAD/README.md -------------------------------------------------------------------------------- /bin/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devonab/filament-easy-footer/HEAD/bin/build.js -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devonab/filament-easy-footer/HEAD/composer.json -------------------------------------------------------------------------------- /config/filament-easy-footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devonab/filament-easy-footer/HEAD/config/filament-easy-footer.php -------------------------------------------------------------------------------- /resources/views/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/views/easy-footer.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devonab/filament-easy-footer/HEAD/resources/views/easy-footer.blade.php -------------------------------------------------------------------------------- /resources/views/github-version.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devonab/filament-easy-footer/HEAD/resources/views/github-version.blade.php -------------------------------------------------------------------------------- /src/EasyFooter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devonab/filament-easy-footer/HEAD/src/EasyFooter.php -------------------------------------------------------------------------------- /src/EasyFooterPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devonab/filament-easy-footer/HEAD/src/EasyFooterPlugin.php -------------------------------------------------------------------------------- /src/EasyFooterServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devonab/filament-easy-footer/HEAD/src/EasyFooterServiceProvider.php -------------------------------------------------------------------------------- /src/Facades/EasyFooter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devonab/filament-easy-footer/HEAD/src/Facades/EasyFooter.php -------------------------------------------------------------------------------- /src/Livewire/GitHubVersion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devonab/filament-easy-footer/HEAD/src/Livewire/GitHubVersion.php -------------------------------------------------------------------------------- /src/Services/GitHubService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devonab/filament-easy-footer/HEAD/src/Services/GitHubService.php -------------------------------------------------------------------------------- /src/Testing/TestsEasyFooter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devonab/filament-easy-footer/HEAD/src/Testing/TestsEasyFooter.php -------------------------------------------------------------------------------- /stubs/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------