mirror of
				https://github.com/v2board/v2board.git
				synced 2025-11-04 03:11:46 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			347 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			347 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace App\Http\Controllers\Guest;
 | 
						|
 | 
						|
use Illuminate\Http\Request;
 | 
						|
use App\Http\Controllers\Controller;
 | 
						|
use App\Models\Plan;
 | 
						|
 | 
						|
class PlanController extends Controller
 | 
						|
{
 | 
						|
    public function fetch(Request $request)
 | 
						|
    {
 | 
						|
        $plan = Plan::where('show', 1)->get();
 | 
						|
        return response([
 | 
						|
            'data' => $plan
 | 
						|
        ]);
 | 
						|
    }
 | 
						|
}
 |