@extends('cms.application') @section('content')
@if($fathers->count() == 0)
@else {{--
--}} @foreach($fathers as $key => $father)
{{ $father->fullname }}
{!! $father->content !!}
View & Edit {!! link_to_route('cms.founding-fathers.destroy', "Delete", array($father->id), array('data-method' => 'delete', 'data-confirm' => 'Are you Sure' ,'class' => 'label theme-b bg-danger text-white f-12')) !!}
@endforeach {{--
--}}
{{-- {!! $fathers->render() !!} --}}
@endif
@stop @section('scripts') @stop