delete a config.php file located at bootstrap->cache->config.php [It is working for me.]
rani
@rani
0
Reputation
2
Posts
614
Profile views
0
Followers
0
Following
Posts made by rani
-
RE: View [default] not found.
-
RE: Widget class role authentication
use Modules\User\Contracts\Authentication;
class DashboardController extends AdminBaseController
{
/**
* @var Authentication
*/
private $auth;public function __construct( Authentication $auth) { $this->auth = $auth; }
public function index()
{
$logged_in_user= $this->auth->user();
return $logged_in_user;
}
}