@extends('layouts.app')
@section('content')
Post {{ $post->id }}
{!! Form::open([
'method'=>'DELETE',
'url' => ['posts', $post->id],
'style' => 'display:inline'
]) !!}
{!! Form::button('', array(
'type' => 'submit',
'class' => 'btn btn-danger btn-xs',
'title' => 'Delete Post',
'onclick'=>'return confirm("Confirm delete?")'
));!!}
{!! Form::close() !!}
| ID | {{ $post->id }} |
| Title | {{ $post->title }} |
|---|
| Category Id | {{ $post->category_id }} |
@endsection