我是laravel的新手。我只想在受限页面上显示消息。 这是我的代码
class TodoController extends Controller
{
public function __construct()
{
$this->middleware('auth')->with('Message','Please Login First');
}
但是对我来说错误Call to undefined method Illuminate\Routing\ControllerMiddlewareOptions::with()
不起作用。非常感谢