试图获得非对象Laravel 5.2的属性

时间:2016-07-18 16:04:05

标签: php laravel laravel-5 laravel-5.2 blade

我的laravel项目有问题

  

尝试获取非对象的属性

这一行的问题

<div class="text">{{ link_to_route('forum.show',$question->title,array($question->id)) }}</div>

{{ $question->created_at->diffforHumans()}} bởi {{ $question->user->name }} 

1 个答案:

答案 0 :(得分:0)

你应该确保你在变量中有有效的对象,而不是空值,这样的东西可能会起作用:

@if ($question)
   {{ link_to_route('forum.show',$question->title,array($question->id)) }}

   {$question->created_at->diffforHumans()}} bởi 
   @if ($question->user)
      {{ $question->user->name }}
   @endif
@endif