Skip to content

Instantly share code, notes, and snippets.

@phuclh
Created January 19, 2015 11:01
Show Gist options
  • Save phuclh/3932724204ece1d3b8b5 to your computer and use it in GitHub Desktop.
Save phuclh/3932724204ece1d3b8b5 to your computer and use it in GitHub Desktop.
@foreach ($mangas as $manga)
<li class="clearfix">
<div class="name">
<a href="{{ route('mangas.single', [$manga->id, $manga->slug]) }}" title="{{ $manga->name }}" class="text-ellipsis">{{ $manga->name }} {{ $manga->present()->icon }}</a>
</div>
<div class="chapter">
<a href="{{ $manga->present()->chapterUrl() }}" title="{{ $manga->chapters->last()->name }}" class="text-ellipsis">{{ $manga->chapters->last()->name }}</a>
</div>
</li>
@endforeach
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment