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.
xshop/app/Http/Controllers/Admin/UserController.php

15 lines
309 B
PHTML

5 months ago
<?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;
5 months ago
class UserController extends XController
{
protected $cols = ['name','email','role','mobile'];
5 months ago
}