@extends('layouts.master') @section('title') Song book @stop @section('content')
@foreach($songs as $song) {{ $song->title }}
{{ $song->composer }}
@endforeach
@stop