我有在訪問到在多個表中相關數據,在這裏我的代碼的問題:行<td>{{$exercise->activity_id}}</td>
Laravel訪問幾個表
<table class="table table-striped">
<thead>
<th>Ejercicio</th>
<th>Unidad</th>
<th>Descripcion</th>
<th>Tipo actividad</th>
<th>Operaciones</th>
</thead>
@foreach($exercises as $exercise)
<tbody>
<td>{{$exercise->name}}</td>
<td>{{$exercise->unit}}</td>
<td>{{$exercise->description}}</td>
<td>{{$exercise->activity_id}}</td>
<td>
<?php echo link_to('exercise/edit/'.$exercise->id, $title = 'Editar', $attributes = array('class' => 'btn btn-primary'), $secure = null); ?>
</td>
</tbody>
@endforeach
</table
這只是另一個表的外鍵名爲activity_type有一個ID和一個名稱,所以我想要顯示的是這個ID的名稱。
我該怎麼做?
回報$這個 - >屬於關聯( '應用程序\ ActivityType', 'ACTIVITY_ID', 'ID'); 'foreign_key'是第二個參數。 –
謝謝!這使得解決方案 – user3557451
如果這個解決方案是好的,那麼將其作爲可接受的答案,這將有助於已經面對這個問題的其他人 –