Laravel - Controllers
Examine this controller constructor:
What is the issue with this middleware assignment?
public function __construct() {
$this->middleware('auth')->only('index');
$this->middleware('guest')->only('index');
}What is the issue with this middleware assignment?
