@extends('frontend.layouts.master') @section('content')

Nuestros últimos blogs de motos

@foreach ($blogs as $blog)
{{ $blog->title }}
{{ $blog->category->name }}
  • {{ $blog->user->name }}
  • {{ date('d m Y', strtotime($blog->created_at)) }}
  • {{ $blog->comments_count }} comment
{!! truncate($blog->title, 30) !!}
@endforeach @if ($blogs->isEmpty())
¡No se encontró ningún blog!
@endif
@if ($blogs->hasPages())
{{ $blogs->links() }}
@endif
@endsection