@extends('layouts.welcome') @section('title', 'Audio') @section('content')
Background flou

{!! nl2br('Audiothèque: ' . $audio->radio->name) !!}

@php $image = $audio->image ? asset($audio->image) : asset('images/categories/Autre.webp'); @endphp
{{ $audio->audio_title }}
{{ strtoupper($audio->category ?? 'AUDIO') }}
{{ $audio->radio->name }}

{{ $audio->audio_title }}

Publié le {{ \Carbon\Carbon::parse($audio->created_at)->format('d/m/Y à H:i') }}

@if ($audio->description)

{{ Str::limit(Str::ucfirst(string: Str::lower($audio->description)), 300, '...') }}

@else

Aucune description disponible

@endif
@if ($audios->count() > 1)

Voir plus d'audios de ce type

@foreach ($audios->where('id', '!=', $audio->id)->take(6) as $item) @endforeach
@endif @endsection @section('scripts') @endsection