mirror of
				https://github.com/v2board/v2board.git
				synced 2025-11-01 01:41:47 +08:00 
			
		
		
		
	update: logic optimization
This commit is contained in:
		| @@ -3,6 +3,7 @@ | ||||
| namespace App\Http\Controllers\User; | ||||
|  | ||||
| use App\Http\Controllers\Controller; | ||||
| use App\Models\User; | ||||
| use Illuminate\Http\Request; | ||||
| use App\Models\Plan; | ||||
|  | ||||
| @@ -10,12 +11,15 @@ class PlanController extends Controller | ||||
| { | ||||
|     public function fetch(Request $request) | ||||
|     { | ||||
|         $user = User::find($request->session()->get('id')); | ||||
|         if ($request->input('id')) { | ||||
|             $plan = Plan::where('id', $request->input('id')) | ||||
|                 ->first(); | ||||
|             $plan = Plan::where('id', $request->input('id'))->first(); | ||||
|             if (!$plan) { | ||||
|                 abort(500, __('Subscription plan does not exist')); | ||||
|             } | ||||
|             if ((!$plan->show && !$plan->renew) || (!$plan->show && $user->plan_id !== $plan->id)) { | ||||
|                 abort(500, __('Subscription plan does not exist')); | ||||
|             } | ||||
|             return response([ | ||||
|                 'data' => $plan | ||||
|             ]); | ||||
|   | ||||
		Reference in New Issue
	
	Block a user