Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Laravel middleware get route parameter

Tags:

php

laravel

I am coding some thing like 'school club manage system' and meet some problem on rights authorization of resource .

Suppose there are club , and club have manager , and i want to check if the user is a manager of club before he can manage it with a middleware.

Using laravel 5.2

My router looks like that :

Route::resource('club', 'ClubController');

The middleware I create looks like that :

  public function handle($request, Closure $next)
    {
        if (!Auth::check()){
            // ask user to login
        }

        $club = Club::findOrFail($request->input('club'));
        $user = Auth::user();

        if (!$club->managers->contains($user)){
            //tell user your are not manager .
        }

        return $next($request);
}

But I failed to get the id of club from requests .

How can I solve the problem ?

Thanks in advance .

like image 998
KIDJourney Avatar asked Mar 03 '16 02:03

KIDJourney


2 Answers

if you are looking for the url parameters the best way of getting that from the resource routes in laravel 5.2 inside the middleware is below. Lets say you want to get id parameter form url club/edit/{id}

$request->route()->parameter('id');
like image 127
Shyam Achuthan Avatar answered Oct 12 '22 00:10

Shyam Achuthan


A shorter syntax is:

$request->route('parameter_name');
like image 30
Mostafa Soufi Avatar answered Oct 12 '22 00:10

Mostafa Soufi