Laravel - Controllers
Identify the error in this controller constructor:
public function __construct() {
$this->middleware('auth')->except('index', 'show');
$this->middleware('log');
}