PHPackages                             chinaobject/laravel-pre-request - 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. [Utility &amp; Helpers](/categories/utility)
4. /
5. chinaobject/laravel-pre-request

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

chinaobject/laravel-pre-request
===============================

This is a pre request processing package for laravel

1.1.1(8y ago)496MITPHPPHP &gt;=7.0

Since Mar 14Pushed 7y agoCompare

[ Source](https://github.com/chinaobject/laravel-pre-request)[ Packagist](https://packagist.org/packages/chinaobject/laravel-pre-request)[ RSS](/packages/chinaobject-laravel-pre-request/feed)WikiDiscussions master Synced 2mo ago

READMEChangelogDependencies (2)Versions (5)Used By (0)

> This is a pre request processing package of laravel

What is my thinking?
====================

[](#what-is-my-thinking)

In the daily developing , you may use the MVC pattern,
but as the project gets heavier and heavier,
you will find the controllers were become too fatter to maintain.

What should we do?
==================

[](#what-should-we-do)

use the Ablegang/laravel-pre-request.

you may get it by :

```
composer require chinaobject/laravel-pre-request

```

What can the laravel-pre-request do?
====================================

[](#what-can-the-laravel-pre-request-do)

- reducing the controller's complexity
- check the route parameters
- parameters assembling

Use this package , you will split the code about check from the controller.
For example:

```
// before use this package,you may write the controller in this way

namespace App\Http\Controllers;

use Illuminate\Routing\Controller;

class Login extends Controller
{
    public function __invoke(Request $request)
    {
        $this->validate($request,[
            'username' => 'required|email|exists:users,email'
        ],[
            'username.required' => 'username is required' ,
            'username.email' => 'username is an email' ,
            'username.exists' => 'username not found'
        ]);
    }
}

```

Ok,in this way,if the login logic is very complex,you can imagine how big the controller was.
So,the laravel framework provides the FormRequest to solve this problem.
But,you know,the FormRequest can only check the Request's params,it can't check the router's params.
If you want to use the restful at your api,you may only use the "route pattern" for check params.
As you knows,the "route pattern" can only provide simple checking,such as "required","format"...

Use laravel-pre-request package:

```
namespace App\Http\FormRequest;

use Chinaobject\PreRequest\PreRequest;

class LoginRequest extends PreRequest
{
    public function rules()
    {
        // the check rules , you can also check the route parameters in this function
        return [
            'username' => 'required',
            'client_ids' => 'array'
        ];
    }

    public function messages()
    {
        // the invaild messages
        return [
            'username.*' => 'username must be required',
            'client.*' => 'client must be array'
        ];
    }

    public function authorize()
    {
        // the authorize check , if you want to check the authorize , you may wirte the logic for yourself.
        return true;
    }

    public function assembling()
    {
        // the parameters assembling ,
        // before they were injected to controller,you may wang to assemble the parameters

        // if the request parameters is an array[1,2,3];

        $client = ['web','ios','android'];

        $data = [];
        foreach($this->data['client'] as $v) {
            $data[] = $client[$v];
        }
        $this->data['client'] = $data;

        return $this->data;

        // Ok,you can get the assembled data by $request->fullData() in controller.
        // Of cause , you must inject this FormRequest into your controller.
    }
}

```

That's all.Thanks for your reading.

Feel free to email me if you have any question，

###  Health Score

28

—

LowBetter than 54% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity13

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity61

Established project with proven stability

 Bus Factor1

Top contributor holds 94.4% 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 ~4 days

Total

4

Last Release

2966d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/9fadde43b133443b62b636e8c07c98a7fc171af777f839e24cb33d7b8927ba4d?d=identicon)[chinaobject](/maintainers/chinaobject)

---

Top Contributors

[![Ablegang](https://avatars.githubusercontent.com/u/22346644?v=4)](https://github.com/Ablegang "Ablegang (17 commits)")[![xinhaonaner](https://avatars.githubusercontent.com/u/24741621?v=4)](https://github.com/xinhaonaner "xinhaonaner (1 commits)")

---

Tags

requestlaravelpre-request

### Embed Badge

![Health badge](/badges/chinaobject-laravel-pre-request/health.svg)

```
[![Health](https://phpackages.com/badges/chinaobject-laravel-pre-request/health.svg)](https://phpackages.com/packages/chinaobject-laravel-pre-request)
```

###  Alternatives

[livewire/volt

An elegantly crafted functional API for Laravel Livewire.

4195.3M84](/packages/livewire-volt)[gehrisandro/tailwind-merge-laravel

TailwindMerge for Laravel merges multiple Tailwind CSS classes by automatically resolving conflicts between them

341682.2k18](/packages/gehrisandro-tailwind-merge-laravel)[whitecube/laravel-timezones

Store UTC dates in the database and work with custom timezones in the application.

106106.2k](/packages/whitecube-laravel-timezones)[pyaesone17/active-state

Active State Checker For Laravel Url

4761.8k1](/packages/pyaesone17-active-state)[forxer/laravel-gravatar

A library providing easy gravatar integration in a Laravel project.

4235.6k](/packages/forxer-laravel-gravatar)[iteks/laravel-enum

A comprehensive Laravel package providing enhanced enum functionalities, including attribute handling, select array conversions, and fluent facade interactions for robust enum management in Laravel applications.

2516.7k](/packages/iteks-laravel-enum)

PHPackages © 2026

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