我能够检查标头是否设置了变量,如下所示:
@if (isset($var1))
<header><h3>"{{$var1}}" </h3></header>
@endif
但是我不知道如何为这种形式做同样的事情:
<form action="{{route('post.create',['var' => $var])}}" method="post">
因为我收到以下错误:
Undefined variable: var
答案 0 :(得分:0)
要在laravel 5.2中创建表单,您需要遵循此方法
echo Form::open(array('route' => array('post.create', $var)))
这篇文章对你有很多帮助https://laravelcollective.com/docs/5.2/html