feat: 项目基础框架+配置+Kernel
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Controllers\Agent;
|
||||
|
||||
use Illuminate\Http\Request;
|
||||
use App\Currency;
|
||||
|
||||
class CommonController extends Controller
|
||||
{
|
||||
public function legalCurrency()
|
||||
{
|
||||
$currencies = Currency::where('is_legal', 1)->get();
|
||||
return $this->ajaxReturn($currencies);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user