{{HTML::image($book->image->url('small'))}}
{{link_to_route('book', str_limit($book->title, 55), [$book->route], ['title' => $book->title])}}
{{str_limit($book->author, 50)}}
@if ($book->only_for_one_euro)
{{number_format($book->price, 2, ',', ' ')}} €
{{number_format(1, 2, ',', ' ')}} €
@elseif ($book->bookDiscounts->count())
{{number_format($book->price, 2, ',', ' ')}} €
{{number_format($book->bookDiscounts->first()->discount, 2, ',', ' ')}} €
@elseif ($discount)
{{number_format($book->price, 2, ',', ' ')}} €
{{number_format($book->price * ((100 - $discount->discount) / 100), 2, ',', ' ')}} €
@else
{{number_format($book->price, 2, ',', ' ')}} €
@endif