@extends('layouts.admin') @section('admin')

Songs

@foreach($model as $song) @endforeach
Title Singer Image Song File Action
{{$song->title}} {{$song->singer}} @if($song->image) image @endif @if(!empty($song->song_file) && file_exists($song->song_file)) Download @endif
@endsection