Backend for songs.zachdecook.com
1
2
3
4
5
6
7
8
9
@extends('layouts.app')
@section('content')
<div class='container'>
    <h2>{{$song['title']}}</h2>
    <pre>
    {{$song['text']}}
    </pre>
</div>
@endsection