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