mirror of
https://github.com/v2board/v2board.git
synced 2025-02-11 07:59:11 +08:00
update
This commit is contained in:
parent
2172f088a2
commit
a524fb6f76
@ -9,13 +9,19 @@ use App\Models\Plan;
|
|||||||
class PlanController extends Controller
|
class PlanController extends Controller
|
||||||
{
|
{
|
||||||
public function fetch (Request $request) {
|
public function fetch (Request $request) {
|
||||||
if (empty($request->input('plan_id'))) {
|
if ($request->input('id')) {
|
||||||
abort(500, '参数错误');
|
$plan = Plan::where('id', $request->input('id'))
|
||||||
}
|
->where('show', 1)
|
||||||
$plan = Plan::find($request->input('plan_id'));
|
->first();
|
||||||
if (!$plan) {
|
if (!$plan) {
|
||||||
abort(500, '该订阅不存在');
|
abort(500, '该订阅不存在');
|
||||||
|
}
|
||||||
|
return response([
|
||||||
|
'data' => $plan
|
||||||
|
]);
|
||||||
}
|
}
|
||||||
|
$plan = Plan::where('show', 1)
|
||||||
|
->get();
|
||||||
return response([
|
return response([
|
||||||
'data' => $plan
|
'data' => $plan
|
||||||
]);
|
]);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user