個人間で契約を結ぶサイトを作成しています。
契約詳細のページのみ外部からの閲覧可能のページとしています。
登録していないユーザーの場合はログイン処理をさせて、ログイン済みユーザーについては通常通りのページを表示できるようにviewで分けています。
通常のログインページではログイン後にマイページへ遷移させていますが、
このページについてはログイン後に、アクアセスしてきたURLをリダイレクト先にしたいと考えています。
route
1//外部から閲覧可能のページ 2Route::get('apply/{id}', 'ContractController@apply')->name('apply'); 3Route::post('apply/{id}', 'ContractController@confirmApply')->name('confirmApply'); 4//ログインページ 5Route::get('login', 'AuthController@login')->name('login'); 6Route::post('login', 'AuthController@confirmLogin');
ログイン処理が書かれているコントローラー
AuthController
1 2<?php 3 4namespace App\Http\Controllers; 5 6class AuthController extends Controller { 7 8 public function login() { 9 return view('auth.login')->with('is_error', FALSE); 10 } 11 12 public function confirmLogin(UserLoginRequest $request) { 13 14 $user = \App\User::where('tel', $request->tel) 15 ->where('password', $request->password) 16 ->where('status', '>=', 2) 17 ->first(); 18 if ($user) { 19 Auth::login($user, true); 20 21 ********ここでURLを取得して分岐させる?************ 22 23 $url = url()->previous(); 24 if (strstr($url, 'apply')) { 25 <リダイレクトの処理?> 26 } else { 27 return redirect()->action('MyPageController@index'); 28 } 29 } else { 30 return view('auth.login')->with('is_error', TRUE); 31 } 32 } 33 34 public function logout() { 35 Auth::logout(); 36 return Redirect::to('/regist'); 37 } 38}
外部閲覧可能ページにあるログインフォーム
view
1<section class="panel-area active"> 2 <h3 class="under-y">電話番号</h3> 3 <form action="/login" method="post"> 4 @csrf 5 <input type="text" name="tel"> 6 <h3 class="under-y">パスワード</h3> 7 <input type="text" name="password"> 8 <div> 9 <button type="submit" class="btn landscape-btn w100p">サインイン</button> 10 </div> 11 </form> 12</section>
ルートのapply/{$id}にある$idをどう取得するのか、
もしくはコントローラーのログイン処理でurl->previous();で取得したURLをreturnで表示させる方法があるのでしょうか(自分で探したところ見つけられず・・・)
ご助言いただけると幸いです。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/11/20 01:24