seen.blade.php 738 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. @extends('hello')
  2. @section('content')
  3. <div class="page-header"><h1>Gesehen</h1></div>
  4. {{ $filme->links() }}
  5. <table class="table">
  6. <tr>
  7. <th>Titel</th>
  8. <th>Gesehen am</th>
  9. <th>Vorgeschlagen von</th>
  10. <th>Kommentare</th>
  11. </tr>
  12. @foreach($filme as $film)
  13. <tr>
  14. <td>{{ HTML::link('film/' . $film->id, $film->name) }}</td>
  15. <td>{{ \Carbon\Carbon::parse($film->gesehen)->format('d.m.Y')}}</td>
  16. <td>{{ $film->besitzer->name }}</td>
  17. <td>{{ $film->comments()->count()}}</td>
  18. </tr>
  19. @endforeach
  20. </table>
  21. {{ $filme->links() }}
  22. @stop
  23. @section('title')
  24. Vorschläge ~
  25. @stop
  26. @section('script')
  27. <script type="text/javascript">
  28. $(function() {
  29. $('.tooltip-enable').tooltip({ html: true, placement: "bottom" });
  30. });
  31. </script>
  32. @stop