@extends('cms.application') @section('stylesheets') @stop @section('content')
New Home Link
{!! Form::open(['route' => 'cms.home_links.index']) !!} @include('cms.home_links._form', ['submitButton' => "Save"]) {!! Form::close() !!}
List Of Home Links
@if($links->count() == 0)
@else
    {!! recursiveLinksMenu('0','HomeLink') !!}
@foreach($links as $key => $link) @endforeach @endif
@stop @section('scripts') @stop