Database json encode edip gonderiyim veriyi,
view blade de tekrar decode etmek istiyorum. Fakat foreach dongusunde sanirim bir cakisma yasaniyor.
ya da ben kodlari duzgun yerlestiremedim.
<table id="myTable2">
<thead>
<tr>
<th>会社名</th>
<th>物件名</th>
<th>所在地</th>
<th>販売価額</th>
<th>総戸数</th>
<th>間取り</th>
<th>専有面積</th>
<th>バルコニー面積</th>
<th>竣工年月日</th>
<th>入居年月日</th>
</tr>
<thead>
<tbody>
@foreach($estates as $estate)
<tr>
<td>{{$estate->company_name}}</td>
$links = json_decode($estate->link);
@foreach($links as $link)
<td><a href="{{$link}}" target="_blank">{{$estate->name}}</a></td>
@endforeach
<td>{{$estate->address}}</td>
<td>{{$estate->price}}</td>
<td>{{$estate->hows_old}}</td>
<td>{{$estate->extend}}</td>
<td>{{$estate->rooms}}</td>
<td>{{$estate->balcon_m2}}</td>
<td>{{$estate->old}}</td>
<td>{{$estate->entery}}</td>
</tr>
@endforeach
</tbody>
<table/>
Bu sorunu tam olarak nasil cozebilirim?