hi middleware is excellent for your request you can use this code:
//body of your middleware class public function handle($request, Closure $next) { //request was right go your controller if ($request->age <= 200) {
//redirect to your controller
app('App\Http\Controllers\your controller name')->method(your value)
}
//exit when request was wrong
return $next($request);
}
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community