예제 #1
0
 /**
  * Show the application login form.
  *
  * @return \Illuminate\Http\Response
  */
 public function getLogin()
 {
     return themeview('auth.login');
 }
예제 #2
0
 /**
  * Show the application registration form.
  *
  * @return \Illuminate\Http\Response
  */
 public function getRegister()
 {
     return themeview('auth.register');
 }
예제 #3
0
 public function index()
 {
     return themeview('dashboard.index');
 }
예제 #4
0
 public function index()
 {
     return themeview('plugins.index');
 }
예제 #5
0
 public function index()
 {
     return themeview('welcome');
 }
예제 #6
0
 /**
  * Display the form to request a password reset link.
  *
  * @return \Illuminate\Http\Response
  */
 public function getEmail()
 {
     return themeview('auth.password');
 }
예제 #7
0
 public function edit($id)
 {
     $post = $this->posts->find($id);
     $taxonomy = $this->taxonomy;
     return themeview('posts.edit', compact('post', 'taxonomy'));
 }
예제 #8
0
 public function index()
 {
     $posts = $this->posts->published()->paginate(10);
     return themeview('welcome', compact('posts'));
 }