0
APIのために私自身のミドルウェアを作成しました。続いて、私は私のController
内この$user
変数にアクセスすることができaccess_token
ミドルウェアから変数を取得する方法は?
namespace App\Http\Middleware;
use Closure;
use App\Exceptions\GeneralException;
use App\Models\Access\User\User;
class authNS
{
/**
* Handle an incoming request.
*
* @param \Illuminate\Http\Request $request
* @param \Closure $next
* @return mixed
*/
public function handle($request, Closure $next)
{
try {
$user = User::where("access_token",$request->header('access-token'))->with('details')->first();
} catch (Exception $e) {
return response()->json(['error'=>'Something is wrong']);
}
return $next($request);
}
}
のparamsの要求に基づいて、有効なユーザーの詳細情報を取得するためしかし、どのように私のコードですか?
ありがとうございました。それは完全に働いた – devmyb
@iコード、私はあなたが助けてください。こちらをご覧ください:http://stackoverflow.com/questions/41030097/how-to-add-some-textfield-in-form-register-laravel-generator-infyom –