예제 #1
0
 public function BuildLayout()
 {
     $settings = Setting::allSetting();
     $navigations = ['super' => [['title' => 'Төслүүд', 'url' => url('projects')], ['title' => 'Төсөл нэмэх', 'url' => url('project/add')], ['title' => 'Бидний тухай', 'url' => url('about-us')]], 'user' => [['title' => 'Нэвтрэх', 'url' => '#', 'attributes' => ['data-toggle' => 'modal', 'data-target' => '#loginModal']], ['title' => 'Бүртгүүлэх', 'url' => '#', 'attributes' => ['data-toggle' => 'modal', 'data-target' => '#registerModal']]], 'about' => [['title' => 'Блог', 'url' => url('blog')], ['title' => 'Хамтран ажиллагсад', 'url' => url('about-partners')], ['title' => 'Дэмжигчид', 'url' => url('about-supporters')], ['title' => 'Үйлчилгээний нөхцөл', 'url' => url('tos')]], 'help' => [['title' => 'Түгээмэл асуулт, хариулт', 'url' => url('faq')], ['title' => 'Хэрхэн хөрөнгө оруулах', 'url' => url('funding')], ['title' => 'Төслийн шалгуур', 'url' => url('requirment')]]];
     $categories = \App\Category::where('type', 1)->get();
     foreach ($categories as $c) {
         $navigations['categories'][] = ['title' => $c->title, 'url' => $c->url];
     }
     if ($this->user) {
         $navigations['profile'] = [['title' => 'Миний төслүүд', 'url' => url('user/projects')], ['title' => 'Дэмжсэн төслүүд', 'url' => url('user/support')], ['title' => 'Бүртгэлийн тохиргоо', 'url' => url('user/edit/profile')], ['title' => 'Нууц үг солих', 'url' => url('user/edit/profile/password')]];
         $navigations['user'] = [['title' => 'Миний бүртгэл', 'url' => url('user/profile'), 'child' => $navigations['profile']], ['title' => 'Гарах', 'url' => url('user/logout')]];
         $navigations['admin'] = [['title' => 'Төслүүд', 'url' => url('admin/projects')], ['title' => 'Ангилалууд', 'url' => url('admin/categories')], ['title' => 'Агуулгууд', 'url' => url('admin/content')]];
         if ($this->user->role == 1) {
             $navigations['user'][] = ['title' => 'Админ цэс', 'url' => url('admin'), 'child' => $navigations['admin']];
         }
     }
     $recaptchakey = Setting::getSetting('recaptchakey');
     $this->view = view($this->layout)->withStyles($this->styles)->withScripts($this->scripts)->withSettings($settings)->withMetas($this->metas)->withNavigations($navigations)->with('recaptchakey', $recaptchakey);
     if ($this->user) {
         $this->view->withUserlevel($this->user->usr_level);
     }
     return $this->view;
     // Run the 'csrf' filter on all post, put, patch and delete requests.
     //$this->beforeFilter('csrf', ['on' => ['post', 'put', 'patch', 'delete']]);
 }