middleware = ['csrf']; $this->system = System::getSystem(); $this->data['system'] = $this->system; $this->setCsrfToken(); } //设置SEO信息 protected function setSeo($title, $keywords, $description) { $this->data['seoTitle'] = $title; $this->data['seoKeywords'] = $keywords; $this->data['seoDescription'] = $description; } //设置默认SEO信息 protected function setDefaultSeo() { $this->data['seoTitle'] = $this->system['seo_title']; $this->data['seoKeywords'] = $this->system['seo_keywords']; $this->data['seoDescription'] = $this->system['seo_description']; } //模板 protected function view($template = '') { return view($template)->assign($this->data); } protected function setCsrfToken() { $this->data['_token'] = session('_token') ?? ''; } }