@foreach($list as $item) @php if($type == 'vk'){ if($item['is_closed'] == 1){continue;} $link = 'https://vk.com/club'.$item['id']; $photo = $item['photo_100']; $chid = $item['id']; $title = $item['name']; }elseif($type == 'tg'){ $link = 'https://t.me/'.$item->lid; $photo = $item->photo; $chid = $item->lid; $title = $item->name; } @endphp
{{ $title }} ID: {{ $chid }}
@endforeach