Helper methods
Thumbnails URL
use TCG\Voyager\Traits\Resizable;
class Post extends Model
{
use Resizable;
}Display a single image
@foreach($posts as $post)
<img src="{{Voyager::image($post->thumbnail('small'))}}" />
@endforeach@foreach($posts as $post)
<img src="{{Voyager::image($post->thumbnail('small', 'photo'))}}" />
@endforeachDisplay multiple images
Last updated