This repository has been archived on 2025-08-22. You can view files and clone it, but cannot push or open issues or pull requests.
Files
dumbo/app/views/seen.blade.php
2013-09-11 16:02:44 +02:00

40 lines
738 B
PHP

@extends('hello')
@section('content')
<div class="page-header"><h1>Gesehen</h1></div>
{{ $filme->links() }}
<table class="table">
<tr>
<th>Titel</th>
<th>Gesehen am</th>
<th>Vorgeschlagen von</th>
<th>Kommentare</th>
</tr>
@foreach($filme as $film)
<tr>
<td>{{ HTML::link('film/' . $film->id, $film->name) }}</td>
<td>{{ \Carbon\Carbon::parse($film->gesehen)->format('d.m.Y')}}</td>
<td>{{ $film->besitzer->name }}</td>
<td>{{ $film->comments()->count()}}</td>
</tr>
@endforeach
</table>
{{ $filme->links() }}
@stop
@section('title')
Vorschläge ~
@stop
@section('script')
<script type="text/javascript">
$(function() {
$('.tooltip-enable').tooltip({ html: true, placement: "bottom" });
});
</script>
@stop