Advertisement
Guest User

Untitled

a guest
Jul 7th, 2015
189
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.87 KB | None | 0 0
  1. @extends('app')
  2.  
  3. @section('content')
  4. {!! link_to('posts/create', 'Add Post', ['class' => 'btn btn-primary']) !!}
  5.  
  6. @if ($posts)
  7. <hr/>
  8. <table class="table table-bordered table-striped table-hover">
  9. <tr>
  10. <th>Title</th>
  11. <th>Description</th>
  12. <th>Published on</th>
  13. <th>Action</th>
  14. </tr>
  15. @foreach ($posts as $post)
  16. <tr>
  17. <td>{!! link_to_action('PostsController@show', $post->title, $parameters = array($post->id)) !!}</td>
  18. <td>{!! $post->description !!}</td>
  19. <td>{!! $post->published_at !!}</td>
  20. <td>{!! link_to_action('PostsController@edit', 'Edit Post', $parameters = array($post->id), $attributes = ['class' => 'btn btn-warning']) !!} {!! link_to_action('PostsController@destroy', 'Delete', $parameters = array($post->id), $attributes = ['class' => 'btn btn-danger']) !!}</td>
  21. </tr>
  22. @endforeach
  23. </table>
  24. @endif
  25. @stop
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement