mirror of
				https://github.com/v2board/v2board.git
				synced 2025-11-04 03:11:46 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			524 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			524 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace App\Http\Controllers;
 | 
						|
 | 
						|
use Illuminate\Http\Request;
 | 
						|
use App\Http\Controllers\Controller;
 | 
						|
use App\Models\Plan;
 | 
						|
 | 
						|
class PlanController extends Controller
 | 
						|
{
 | 
						|
    public function fetch (Request $request) {
 | 
						|
        if (empty($request->input('plan_id'))) {
 | 
						|
            abort(500, '参数错误');
 | 
						|
        }
 | 
						|
        $plan = Plan::find($request->input('plan_id'));
 | 
						|
        if (!$plan) {
 | 
						|
            abort(500, '该订阅不存在');
 | 
						|
        }
 | 
						|
        return response([
 | 
						|
            'data' => $plan
 | 
						|
        ]);
 | 
						|
    }
 | 
						|
}
 |