Questions tagged «laravel-3»

10
Laravel验证属性“不错的名称”
我正在尝试使用“语言> {语言}> validation.php”中的验证属性,将:attribute名称(输入名称)替换为适当的可读名称(例如:first_name>名字)。使用起来似乎很简单,但是验证器没有显示“好名字”。 我有这个: 'attributes' => array( 'first_name' => 'voornaam' , 'first name' => 'voornaam' , 'firstname' => 'voornaam' ); 显示错误: @if($errors->has()) <ul> @foreach ($errors->all() as $error) <li class="help-inline errorColor">{{ $error }}</li> @endforeach </ul> @endif 并在控制器中进行验证: $validation = Validator::make($input, $rules, $messages); $ messages数组: $messages = array( 'required' => ':attribute is …

18
我的路线返回了404,我该如何解决?
我刚刚开始学习Laravel框架,而路由却遇到了问题。 唯一有效的路由是开箱即用附加到Laravel的默认本地路由。 我在Windows上使用WAMP,它使用PHP 5.4.3和Apache 2.2.22,并且还启用了mod_rewrite,并已从application.php配置文件中删除了“ index.php”以保留一个空字符串。 我创建了一个名为User的新控制器: class User_Controller extends Base_Controller { public $restful = true; public function get_index() { return View::make('user.index'); } } 我已经使用一些基本的HTML代码在application / views / user /中创建了一个名为index.php的视图文件,并在route.php中添加了以下内容: Route::get('/', function () { return View::make('home.index'); }); Route::get('user', function () { return View::make('user.index'); }); http://localhost/mysite/public在我的网络浏览器中访问根目录()时,第一条路线工作正常,但是当我尝试转到第二条路线时,http://localhost/mysite/public/user出现404 Not Found错误。为什么会这样呢?

11
Laravel-传递多个变量来查看
我有这个站点,它的页面之一从数据库中创建了一个简单的人员列表。我需要将一个特定的人添加到我可以访问的变量中。 如何修改该return $view->with('persons', $persons);行以将$ ms变量也传递给视图? function view($view) { $ms = Person::where('name', 'Foo Bar'); $persons = Person::order_by('list_order', 'ASC')->get(); return $view->with('persons', $persons); }
74 php  laravel  laravel-3 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.