You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
<?php
|
|
|
|
|
/**
|
|
|
|
|
* Created by PhpStorm.
|
|
|
|
|
* User: weizongsong
|
|
|
|
|
* Date: 2025-10-13
|
|
|
|
|
* Time: 21:00
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
namespace App\Http\Controllers\Admin;
|
|
|
|
|
|
|
|
|
|
use App\Forms\AlipayAccountForm;
|
|
|
|
|
use App\Models\AlipayAccount;
|
|
|
|
|
use Illuminate\Http\Request;
|
|
|
|
|
|
|
|
|
|
class AlipayAccountController extends CommonController
|
|
|
|
|
{
|
|
|
|
|
public $bladePath = "admin.alipay-account";
|
|
|
|
|
public $urlPrefix = "admin/alipay-account";
|
|
|
|
|
public $modelName = "支付宝账号";
|
|
|
|
|
public $modelClass = AlipayAccount::class;
|
|
|
|
|
public $formClass = AlipayAccountForm::class;
|
|
|
|
|
|
|
|
|
|
public function index(Request $request)
|
|
|
|
|
{
|
|
|
|
|
$data = $this->model->paginate(10);
|
|
|
|
|
return view($this->bladePath . ".index", compact("data"));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|