mirror of https://github.com/4xmen/xshop.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
309 B
PHP
15 lines
309 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\Admin;
|
|
|
|
use App\Http\Controllers\Controller;
|
|
use App\Http\Controllers\XController;
|
|
use Illuminate\Http\Request;
|
|
use App\Helper;
|
|
use function App\Helpers\hasCreateRoute;
|
|
|
|
class UserController extends XController
|
|
{
|
|
protected $cols = ['name','email','role','mobile'];
|
|
}
|