A package that is applied to Laravel to avoid resubmitting form data
tinghom/laravel-avoid-resubmit is a Laravel package for a package that is applied to laravel to avoid resubmitting form data.
It currently has 1 GitHub stars and 62 downloads on Packagist (latest version 0.0.2).
Install it with composer require tinghom/laravel-avoid-resubmit.
Discover more Laravel packages by tinghom
or browse all Laravel packages to compare alternatives.
Last updated
A package that is applied to Laravel to avoid resubmitting form data
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,
]