@extends('layouts.admin') @section('title', 'Audio Files | Admin Dashboard') @section('page-title', 'Audio Files') @section('content')

Manage Audio Files

Upload New Audio
@if(count($files) > 0)
@foreach($files as $file) @endforeach
Title Duration Size Description Actions
{{ $file->title }} {{ gmdate("i:s", $file->duration) }} {{ round($file->file_size / (1024 * 1024), 2) }} MB {{ Str::limit($file->description, 50) }}
@else

No audio files found. Upload your first audio file.

@endif
@endsection