Backend for songs.zachdecook.com
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
@extends('layouts.app')
@section('title', "All songs")
@section('content')
<div class='container'>
                <h1>
                    Prosongsa Songs
                </h1>

                <ul>
                    @foreach( App\Song::all() as $song )
                        <li>
                            <a href='{{ route('song.show', ['song' => $song]) }}'>
                                {{ $song['title'] }}
                            </a>
                    @endforeach
                </ul>
</div>
@endsection