├── LICENSE.md ├── README.md ├── composer.json ├── config └── laralerts.php ├── resources └── views │ └── bootstrap │ ├── alert.blade.php │ └── container.blade.php └── src ├── Alert.php ├── Bag.php ├── BogusAlert.php ├── Contracts └── Renderer.php ├── Facades └── Alert.php ├── Http └── Middleware │ ├── AddAlertsToJson.php │ └── StoreAlertsInSession.php ├── LaralertsServiceProvider.php ├── RendererManager.php ├── Renderers ├── BootstrapRenderer.php └── CompilesAlert.php ├── Testing ├── Builder.php └── Fakes │ └── BagFake.php ├── View └── Component │ └── LaralertsComponent.php └── helpers.php /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkGhostHunter/Laralerts/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkGhostHunter/Laralerts/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkGhostHunter/Laralerts/HEAD/composer.json -------------------------------------------------------------------------------- /config/laralerts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkGhostHunter/Laralerts/HEAD/config/laralerts.php -------------------------------------------------------------------------------- /resources/views/bootstrap/alert.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkGhostHunter/Laralerts/HEAD/resources/views/bootstrap/alert.blade.php -------------------------------------------------------------------------------- /resources/views/bootstrap/container.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkGhostHunter/Laralerts/HEAD/resources/views/bootstrap/container.blade.php -------------------------------------------------------------------------------- /src/Alert.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkGhostHunter/Laralerts/HEAD/src/Alert.php -------------------------------------------------------------------------------- /src/Bag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkGhostHunter/Laralerts/HEAD/src/Bag.php -------------------------------------------------------------------------------- /src/BogusAlert.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkGhostHunter/Laralerts/HEAD/src/BogusAlert.php -------------------------------------------------------------------------------- /src/Contracts/Renderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkGhostHunter/Laralerts/HEAD/src/Contracts/Renderer.php -------------------------------------------------------------------------------- /src/Facades/Alert.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkGhostHunter/Laralerts/HEAD/src/Facades/Alert.php -------------------------------------------------------------------------------- /src/Http/Middleware/AddAlertsToJson.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkGhostHunter/Laralerts/HEAD/src/Http/Middleware/AddAlertsToJson.php -------------------------------------------------------------------------------- /src/Http/Middleware/StoreAlertsInSession.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkGhostHunter/Laralerts/HEAD/src/Http/Middleware/StoreAlertsInSession.php -------------------------------------------------------------------------------- /src/LaralertsServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkGhostHunter/Laralerts/HEAD/src/LaralertsServiceProvider.php -------------------------------------------------------------------------------- /src/RendererManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkGhostHunter/Laralerts/HEAD/src/RendererManager.php -------------------------------------------------------------------------------- /src/Renderers/BootstrapRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkGhostHunter/Laralerts/HEAD/src/Renderers/BootstrapRenderer.php -------------------------------------------------------------------------------- /src/Renderers/CompilesAlert.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkGhostHunter/Laralerts/HEAD/src/Renderers/CompilesAlert.php -------------------------------------------------------------------------------- /src/Testing/Builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkGhostHunter/Laralerts/HEAD/src/Testing/Builder.php -------------------------------------------------------------------------------- /src/Testing/Fakes/BagFake.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkGhostHunter/Laralerts/HEAD/src/Testing/Fakes/BagFake.php -------------------------------------------------------------------------------- /src/View/Component/LaralertsComponent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkGhostHunter/Laralerts/HEAD/src/View/Component/LaralertsComponent.php -------------------------------------------------------------------------------- /src/helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkGhostHunter/Laralerts/HEAD/src/helpers.php --------------------------------------------------------------------------------