fork download
  1. <form action="/{{ $article->id }}" method="POST">
  2. {{ csrf_field() }}
  3. {{ method_field('DELETE') }}
  4.  
  5. <button type="submit" class="btn btn-danger">
  6. <i class="fa fa-trash"></i> Delete
  7. </button>
  8. </form>
Success #stdin #stdout 0.02s 24076KB
stdin
Standard input is empty
stdout
<form action="/{{ $article->id }}" method="POST">
    {{ csrf_field() }}
    {{ method_field('DELETE') }}

    <button type="submit" class="btn btn-danger">
        <i class="fa fa-trash"></i> Delete
    </button>
</form>