tinghom / laravel-avoid-resubmit
A package that is applied to Laravel to avoid resubmitting form data
Installs: 62
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 0
Open Issues: 0
pkg:composer/tinghom/laravel-avoid-resubmit
Requires
- php: ^5.6|^7.0|^8.0
- illuminate/support: ^5.5|^6.0|^7.0|^8.0
This package is auto-updated.
Last update: 2025-12-19 20:36:28 UTC
README
A package that is applied to Laravel to avoid resubmitting form data
Install
Use composer to install package
$ composer required tinghom/laravel-avoid-resubmit
notice if your Laravel version is beyond 5.6, package’ll auto register ServiceProvider to app.php. But if your version is above 5.6, you’ve to register by yourself.
config/app.php
'provider' => [ // package ServiceProvider Tinghom\Middleware\AvoidResubmitServiceProvider::class, ]