@extends('themes.default1.layouts.master') @section('head') @stop @section('header')

Home

@stop @section('content')
@if(Session::has('success'))
Alert! Failed.

{{Session::get('success')}}

@endif

Song List

@foreach($songs as $song) @endforeach
ID Title Slug Action
{!! $song->id !!} {!! $song->title !!} {!! $song->slug !!} {!! link_to_route('songs.show','Show',[$song->slug],['id'=>'show','class'=>'btn btn-primary btn-sm']) !!}
ID Title Slug Action
@stop @section('footer') @stop