PHPackages                             devlop/laravel-failed-validation-response - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Validation &amp; Sanitization](/categories/validation)
4. /
5. devlop/laravel-failed-validation-response

ActiveLibrary[Validation &amp; Sanitization](/categories/validation)

devlop/laravel-failed-validation-response
=========================================

Trait for Laravel FormRequest to enable the use of custom responses for failed validation attempts.

1.0.2(2y ago)060MITPHPPHP ^7.4|^8.0

Since Mar 12Pushed 2y ago1 watchersCompare

[ Source](https://github.com/devlop/laravel-failed-validation-response)[ Packagist](https://packagist.org/packages/devlop/laravel-failed-validation-response)[ RSS](/packages/devlop-laravel-failed-validation-response/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (3)Dependencies (3)Versions (4)Used By (0)

 [![Latest Stable Version](https://camo.githubusercontent.com/5ab9448a1883aa07c85afb471930da01ab107e67cea8dd535bdb13eae28ad8a8/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6465766c6f702f6c61726176656c2d6661696c65642d76616c69646174696f6e2d726573706f6e7365)](https://packagist.org/packages/devlop/laravel-failed-validation-response) [![License](https://camo.githubusercontent.com/c315295f72a555f2e440c1be9c8936961ad8f772c025a0fe024ec72093ba9b6b/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f6465766c6f702f6c61726176656c2d6661696c65642d76616c69646174696f6e2d726573706f6e7365)](https://github.com/devlop/laravel-failed-validation-response/blob/master/LICENSE.md)

Laravel Failed Validation Response
==================================

[](#laravel-failed-validation-response)

Trait for [Laravel FormRequests](https://laravel.com/docs/8.x/validation#form-request-validation)to enable the use of custom responses for failed validation (or authorization) attempts.

Installation
============

[](#installation)

```
composer require devlop/laravel-failed-validation-response
```

Usage
=====

[](#usage)

```
use Devlop\Laravel\Validation\FailedValidationResponse;
use Illuminate\Contracts\Validation\Validator;
use Illuminate\Foundation\Http\FormRequest;
use Symfony\Component\HttpFoundation\Response;

class DemoRequest extends FormRequest
{
    use FailedValidationResponse;

    // ... Your normal FormRequest logic.

    /**
     * Get the response for a failed validation attempt.
     *
     * @param  Validator  $validator
     * @return Response|null
     */
    public function failedValidationResponse(Validator $validator) : ?Response
    {
        // Implement this method to use a custom response on validation failure.
        // Do not implement this method to instead use the default behaviour.

        // Example:
        return redirect()->to('/');
    }

    /**
     * Get the response for a failed authorization attempt.
     *
     * @param  Validator  $validator
     * @return Response|null
     */
    public function failedAuthorizationResponse(Validator $validator) : ?Response
    {
        // Implement this method to use a custom response on authorization failure.
        // Do not implement this method to instead use the default behaviour.

        // Example:
        return response()->json([
            'reason' => 'you are not allowed to that!',
        ], 401);
    }
}
```

###  Health Score

26

—

LowBetter than 43% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity9

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity59

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~518 days

Total

3

Last Release

848d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/caa865d4467587eecd242fadf805f15ce436c9d7efa7786b49b69a193c158aaf?d=identicon)[johanrosenson](/maintainers/johanrosenson)

---

Top Contributors

[![johanrosenson](https://avatars.githubusercontent.com/u/10432296?v=4)](https://github.com/johanrosenson "johanrosenson (3 commits)")

---

Tags

form-requestlaravelphptraitvalidation

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/devlop-laravel-failed-validation-response/health.svg)

```
[![Health](https://phpackages.com/badges/devlop-laravel-failed-validation-response/health.svg)](https://phpackages.com/packages/devlop-laravel-failed-validation-response)
```

###  Alternatives

[carsdotcom/laravel-json-schema

Json Schema validation for Laravel projects

1036.7k3](/packages/carsdotcom-laravel-json-schema)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
