PATH:
home
/
lab2454c
/
vaultchip.com
/
platform
/
plugins
/
blog
/
resources
/
views
/
themes
<div> <h3>{{ $category->name }}</h3> {!! Theme::breadcrumb()->render() !!} </div> <div> @if ($posts->count() > 0) @foreach ($posts as $post) <article> <div> <a href="{{ $post->url }}"><img src="{{ RvMedia::getImageUrl($post->image, null, false, RvMedia::getDefaultImage()) }}" alt="{{ $post->name }}"></a> </div> <div> <header> <h3><a href="{{ $post->url }}">{{ $post->name }}</a></h3> <div><span>{{ $post->created_at->format('M d, Y') }}</span><span>{{ $post->author->name }}</span> - <a href="{{ $category->url }}">{{ $category->name }}</a></div> </header> <div> <p>{{ $post->description }}</p> </div> </div> </article> @endforeach <div> {!! $posts->links() !!} </div> @else <div> <p>{{ __('There is no data to display!') }}</p> </div> @endif </div>
[-] tag.blade.php
[edit]
[-] post.blade.php
[edit]
[+]
..
[+]
templates
[-] loop.blade.php
[edit]
[-] category.blade.php
[edit]