Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Laravel same route, different controller

I would like to have general home page and a different homepage for logged-in users
I search a lot on google but I can't find what to put in my if statement

I tried something like this:

Route::get('/', array('as'=>'home', function(){
    if (!Auth::check()) {
        Route::get('/', array('uses'=>'homecontroller@index'));
    }
    else{
        Route::get('/', array('uses'=>'usercontroller@home'));
    }
}));

I also try with something like:

return Controller::call('homecontroller@index');

but it seems it's not for laravel 4

I tried a lot of other things so I think it's more a misconception problem

If you have any clue

thanks for your help

like image 864
jeremy castelli Avatar asked Sep 19 '13 11:09

jeremy castelli


3 Answers

ok after discussions on this platform and other forums, I come back with a compact solution

Route::get('/', array('as'=>'home', 'uses'=> (Auth::check()) ? "usercontroller@home" : "homecontroller@index" ));
like image 161
jeremy castelli Avatar answered Oct 06 '22 01:10

jeremy castelli


The most simple solution I can think of is:

<?php

$uses = 'HomeController@index';
if( ! Auth::check())
{
    $uses = 'HomeController@home';
}

Route::get('/', array(
     'as'=>'home'
    ,'uses'=> $uses
));

Or you can just route the url / to method index() and do the Auth::check() in there.

like image 36
Rob Gordijn Avatar answered Oct 06 '22 02:10

Rob Gordijn


// routes.php
Route::get('/', 'homecontroller@index');



// homecontroller.php
class homecontroller extends BaseController
{
    public function index()
    {
        if (!Auth:: check()) {
            return $this->indexForGuestUser();
        } else {
            return $this->indexForLoggedUser();
        }
    }

    private function indexForLoggedUser()
    {
        // do whatever you want
    }

    private function indexForGuestUser()
    {
        // do whatever you want
    }

}
like image 43
Andreyco Avatar answered Oct 06 '22 00:10

Andreyco