mirror of
https://github.com/cedar2025/Xboard.git
synced 2025-01-23 11:08:13 -05:00
17 lines
322 B
PHP
Executable File
17 lines
322 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Http\Controllers\V1\Guest;
|
|
|
|
use App\Http\Controllers\Controller;
|
|
use App\Models\Plan;
|
|
use Illuminate\Http\Request;
|
|
|
|
class PlanController extends Controller
|
|
{
|
|
public function fetch(Request $request)
|
|
{
|
|
$plan = Plan::where('show', 1)->get();
|
|
return $this->success($plan);
|
|
}
|
|
}
|