Backend for songs.zachdecook.com
1
2
3
4
5
6
7
8
9
10
11
12
13
|
@extends('layouts.app')
@section('title', $playlist->name)
@section('content')
<h2>Playlist "<i>{{$playlist->name}}</i>"</h2>
<ul>
@foreach($playlist->songs as $song)
<li><a href='/song/{{$song->number}}?playlist={{$playlist->id}}'>{{$song->title}}</a>
@endforeach
</ul>
@endsection
|