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