bir foreach döngüm var. başka bir tablodan da withcount ile veri alıyorum. sorunum: bu 2 veriyi tek bir tabloda birleştiremiyorum.
aşağıdaki gibi denedim olmadı 🙂
public function render()
{
$category = Category::all();
$feed = Feed::where('site_id', $this->siteid)->get();
$sitesay = $feed->count('site_id');
$say = $sitesay;
$feed = Feed::withCount(['bot' => function (Builder $query) {
$query->where('site_id', $this->siteid);
}])->get();
return view('livewire.feedlinkform',['category' => $category, 'feed' => $feed],compact('say'),compact('feed'));
}
@foreach ($feed as $fe)
<td class="px-2 py-4">{{ $fe->kategori }} </td>
<td class="px-2 py-4">{{ $fe->katlink }}</td>
<td class="px-2 py-4"><span class="font-bold">{{ $fe->bot_count }}</span> aktif</td>
</tr>
</tbody>
@endforeach