filament-error-mailer
Filament plugin for instant e-mail alerts on web errors, simplifying monitoring and application stability.
File Explorer
- bug.yml
- config.yml
- run-tests.yml
- CONTRIBUTING.md
- dependabot.yml
- FUNDING.yml
- SECURITY.md
- build.js
- error-mailer.php
- index.css
- .gitkeep
- index.js
- error-mailer.php
- details.blade.php
- error.blade.php
- error-mailer.php
- FilamentErrorMailer.php
- ErrorDetailsController.php
- NotifyAdminOfError.php
- ErrorOccurred.php
- DiscordWebhookBuilder.php
- ErrorDetailsBuilder.php
- ErrorFilter.php
- ErrorStorage.php
- WebhookNotifier.php
- TestsFilamentErrorMailer.php
- EventServiceProvider.php
- FilamentErrorMailer.php
- FilamentErrorMailerPlugin.php
- FilamentErrorMailerServiceProvider.php
- .gitkeep
- ErrorNotificationTest.php
- DiscordWebhookBuilderTest.php
- ErrorDetailsBuilderTest.php
- ErrorFilterTest.php
- ErrorStorageTest.php
- WebhookNotifierTest.php
- ArchTest.php
- Pest.php
- TestCase.php
- .editorconfig
- .gitattributes
- .gitignore
- .prettierrc
- CHANGELOG.md
- composer.json
- LICENSE.md
- package.json
- phpunit.xml.dist
- postcss.config.cjs
- README.md
- tailwind.config.js
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
composer
View Details ▼
composer
A package-based dependency manager for PHP projects.
composer init
Interactively create a `composer.json` file:
composer require {{user/package}}
Add a package as a dependency for this project, adding an entry to `composer.json`:
composer install
Install all the dependencies in this project's `composer.json` and create `composer.lock`:
git clone
View Details ▼
git clone
Clone an existing repository.
git clone {{remote_repository_location}} {{path/to/directory}}
Clone an existing repository into a new directory (the default directory is the repository name):
git clone --recursive {{remote_repository_location}}
Clone an existing repository and its submodules:
git clone {{[-n|--no-checkout]}} {{remote_repository_location}}
Clone only the `.git` directory of an existing repository:
php artisan
View Details ▼
php artisan
Laravel's Artisan command-line interface.
php artisan serve
Start PHP's built-in web server for the current Laravel application:
php artisan tinker
Start an interactive PHP command-line interface:
php artisan make:model {{ModelName}} --all
Generate a new Eloquent model class with a migration, factory, and resource controller:
