@extends('default') @section('content')
Create
@foreach($posts as $post) @endforeach
id title url Action
{{ $post->id }} {{ $post->title }} {{ $post->url }}
Show Edit {!! Form::open(['method' => 'DELETE','route' => ['posts.destroy', $post->id]]) !!} {!! Form::submit('Delete', ['class' => 'btn btn-danger']) !!} {!! Form::close() !!}
@stop