@extends('layouts.welcome') @section('title', 'Radios') @section('content')

Ecoutez vos radios préférées

@if (count(value: $radios) > 0)
@foreach ($radios as $key => $radio) @php $hostname = ''; $port = ''; $mount = ''; $mountPoint = $radio->mount_point; if ($mountPoint) { $hostname = $mountPoint->hostname; $port = $mountPoint->port; $mount = $mountPoint->mount; } $logo = $radio->logo ? asset('media/logos/' . $radio->logo) : asset('/logos/1677596613734africawebradio_logo.png'); $city = $radio->city ?? 'Commune non définie'; @endphp @endforeach
{{ $radios->links('pagination::bootstrap-5') }}
@else
Aucune radio disponible pour cette région
@endif
@endsection @section('scripts') @endsection