2016-10-17 34 views
0

我知道這是可能的,但我試圖從網上搜索,但我從來沒有找到答案,所以如果任何人知道如何從@foreach中將數據推送到數組使用Laravel View請幫助我。由於事先如何從@foreach在Laravel視圖中排列數據

下面是代碼

@foreach ($fields as $key => $rel) 

{{ $arrayData = array(

    'field_type' =>'$rel->field_type' 
)}} 

@endforeach 

我已經接收該錯誤是在helpers.php線

ErrorException 519: 用htmlspecialchars()預計參數1是字符串,數組給定(查看:C:\ XAMPP \ htdocs中\ fields.blade.php)從$ rel-> field_type

回答

1

刪除報價

@foreach ($fields as $key => $rel) 

{{ $arrayData = array(

    'field_type' =>$rel->field_type 
)}} 

@endforeach 
+0

錯誤sir a使用未定義的常量field_type - 假定'field_type'(查看:C:\ xampp \ htdocs \ papers \ resources \ views \ admin \ fields.blade.php) – Paul

+0

您可以在foreach之前打印print_r($ fields)迴路和更新question.i認爲field_type存在於陣列 – iCoders

+0

{ \t \t 「FIELD_ID」:82, \t \t 「FIELD_NAME」: 「FIELD_NAME」, \t \t 「field_slug」: 「field_slug」, \t \t「FIELD_LABEL 「:」field_label「, \t \t」field_type「:」text「,} – Paul