tp3.2 nginx server
摘要:server { listen 80 default_server; listen [::]:80 default_server; server_name _; root /www/web; index index.html index.php; location / { index index....
阅读全文
无限极分类
摘要:class CategoryController extends Controller { public function index() { $rootCats = Category::where('parent_id', null)->get(); return $this->tree($rootCats); } priv...
阅读全文